我已经有apache+php的网站,后来又安装了Adobe Flash Media Server(FMS)。很多局域网都会限制80端口以端口的访问(比如某些酒店、学校、图书馆)。为了解决这些问题,就只能使用80端口访问流媒体视频。
我按照FMS官网的说法配置:
http://help.adobe.com/en_US/flashmediaserver/configadmin/WS02f7d8d4857b167770a4686812a808b6918-8000.html
… • If you want Flash Media Server and your web server to share a port, set up Flash Media Server as the proxy, put your web server on an unused port, and change the fms.ini HTTPPROXY_HOST setting to point to that port. … |
httpd.conf:
Listen *:8080 |
fms.ini:
ADAPTOR.HOSTPORT = :1935,80 HTTPPROXY.HOST = :8080 |
访问网页是没有问题了,只是,如果有提交一个表单的时候,它总是跳出来一个窗口让我下载。
困扰ing...