多协议、性能稳定、丰富API的流媒体服务器软件
通过HTTP代理服务器进行授权认证
在某些场景下,你的Wowza服务器可能不能获准直接访问Internet,这样就无法连接到Wowza官方的授权验证服务器进行授权认证。因此你可以用一个HTTP代理服务器来代理授权认证工作(和你翻墙访问Google和Youtube是一个道理)。 如果要这么做,你只要在[install-dir]/conf/Server.xml文件底部Server级别的<Properties>中增加以下参数:
<!-- Properties defined here will be added to the IServer.getProperties() collection -->
<Properties>
     <Property>
          <Name>licenseServerProxyAddress</Name>
          <Value>myproxyhost</Value>
     </Property>
     <Property>
          <Name>licenseServerProxyPort</Name>
          <Value>8080</Value>
          <Type>Integer</Type>
     </Property>
</Properties>
		
请确认你的网络环境中的代理服务器IP地址licenseServerProxyAddress 和 代理端口licenseServerProxyPort是准确的,不要搞错了。 www.ttstream.com

如果你的代理服务器需要对访问进行认证,请在相同的<Properties>增加以下参数对代理服务的用户名和密码进行设置:
<Property>
     <Name>licenseServerProxyUsername</Name>
     <Value>[proxy-username]</Value>
</Property>
<Property>
     <Name>licenseServerProxyPassword</Name>
     <Value>[proxy-password]</Value>
</Property>