Advertisement
fhumayun

Server.xml

May 25th, 2016
437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.07 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <Root version="2">
  3.     <Server>
  4.         <Name>Wowza Streaming Engine</Name>
  5.         <Description>Wowza Streaming Engine is robust, customizable, and scalable server software that powers reliable streaming of high-quality video and audio to any device, anywhere.</Description>
  6.         <RESTInterface>
  7.             <Enable>true</Enable>
  8.             <IPAddress>*</IPAddress>
  9.             <Port>8087</Port>
  10.             <!-- none, basic, digest-->
  11.             <AuthenticationMethod>none</AuthenticationMethod>
  12.             <DiagnosticURLEnable>true</DiagnosticURLEnable>
  13.             <SSLConfig>
  14.                 <Enable>false</Enable>
  15.                 <KeyStorePath></KeyStorePath>
  16.                 <KeyStorePassword></KeyStorePassword>
  17.                 <KeyStoreType>JKS</KeyStoreType>
  18.                 <SSLProtocol>TLS</SSLProtocol>
  19.                 <Algorithm>SunX509</Algorithm>
  20.                 <CipherSuites></CipherSuites>
  21.                 <Protocols></Protocols>
  22.             </SSLConfig>
  23.             <IPWhiteList>127.0.0.1</IPWhiteList>
  24.             <IPBlackList></IPBlackList>
  25.             <EnableXMLFile>false</EnableXMLFile>
  26.             <DocumentationServerEnable>true</DocumentationServerEnable>
  27.             <DocumentationServerPort>8089</DocumentationServerPort>
  28.             <!-- none, basic, digest-->
  29.             <DocumentationServerAuthenticationMethod>none</DocumentationServerAuthenticationMethod>
  30.             <Properties>
  31.                 <Property>
  32.                     <Name>restUserHTTPHeaders</Name>
  33.                     <Value>Access-Control-Allow-Origin:*|Access-Control-Allow-Methods:OPTIONS,GET,PUT,DELETE,POST|Access-Control-Allow-Headers:Content-Type</Value>
  34.                 </Property>
  35.             </Properties>
  36.         </RESTInterface>
  37.         <CommandInterface>
  38.             <HostPort>
  39.                 <ProcessorCount>${com.wowza.wms.TuningAuto}</ProcessorCount>
  40.                 <IpAddress>*</IpAddress>
  41.                 <Port>8083</Port>
  42.             </HostPort>
  43.         </CommandInterface>
  44.         <AdminInterface>
  45.             <!-- Objects exposed through JMX interface: Server, VHost, VHostItem, Application, ApplicationInstance, MediaCaster, Module, Client, MediaStream, SharedObject, Acceptor, IdleWorker -->
  46.             <ObjectList>Server,VHost,VHostItem,Application,ApplicationInstance,MediaCaster,Module,IdleWorker</ObjectList>
  47.         </AdminInterface>
  48.         <Stats>
  49.             <Enable>true</Enable>
  50.         </Stats>
  51.         <!-- JMXUrl: service:jmx:rmi://localhost:8084/jndi/rmi://localhost:8085/jmxrmi -->
  52.         <JMXRemoteConfiguration>
  53.             <Enable>false</Enable>
  54.             <IpAddress>localhost</IpAddress> <!-- set to localhost or internal ip address if behind NAT -->
  55.             <RMIServerHostName>localhost</RMIServerHostName> <!-- set to external ip address or domain name if behind NAT -->
  56.             <RMIConnectionPort>8084</RMIConnectionPort>
  57.             <RMIRegistryPort>8085</RMIRegistryPort>
  58.             <Authenticate>true</Authenticate>
  59.             <PasswordFile>${com.wowza.wms.ConfigHome}/conf/jmxremote.password</PasswordFile>
  60.             <AccessFile>${com.wowza.wms.ConfigHome}/conf/jmxremote.access</AccessFile>
  61.             <SSLSecure>false</SSLSecure>
  62.         </JMXRemoteConfiguration>
  63.         <UserAgents>Shockwave Flash|CFNetwork|MacNetwork/1.0 (Macintosh)</UserAgents>
  64.         <Streams>
  65.             <DefaultStreamPrefix>mp4</DefaultStreamPrefix>
  66.         </Streams>
  67.         <ServerListeners>
  68.             <ServerListener>
  69.                 <BaseClass>com.wowza.wms.mediacache.impl.MediaCacheServerListener</BaseClass>
  70.             </ServerListener>
  71.             <!--
  72.             <ServerListener>
  73.                 <BaseClass>com.wowza.wms.plugin.loadbalancer.ServerListenerLoadBalancerListener</BaseClass>
  74.             </ServerListener>
  75.             -->
  76.             <!--
  77.             <ServerListener>
  78.                 <BaseClass>com.wowza.wms.plugin.loadbalancer.ServerListenerLoadBalancerSender</BaseClass>
  79.             </ServerListener>
  80.             -->
  81.         </ServerListeners>
  82.         <VHostListeners>
  83.             <!--
  84.             <VHostListener>
  85.                 <BaseClass></BaseClass>
  86.             </VHostListener>
  87.             -->
  88.         </VHostListeners>
  89.         <HandlerThreadPool>
  90.             <PoolSize>${com.wowza.wms.TuningAuto}</PoolSize>
  91.         </HandlerThreadPool>
  92.         <TransportThreadPool>
  93.             <PoolSize>${com.wowza.wms.TuningAuto}</PoolSize>
  94.         </TransportThreadPool>
  95.         <RTP>
  96.             <DatagramStartingPort>6970</DatagramStartingPort>
  97.             <DatagramPortSharing>false</DatagramPortSharing>
  98.         </RTP>
  99.        
  100.         <Manager>
  101.             <!-- Properties defined are used by the Manager -->
  102.             <Properties>
  103.             </Properties>
  104.         </Manager>
  105.        
  106.         <!-- Properties defined here will be added to the IServer.getProperties() collection -->
  107.         <Properties>
  108.         </Properties>
  109.     </Server>
  110. </Root>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement