Apache2 虚拟主机代理转发

Apache2 虚拟主机代理转发

大家好,我正在尝试使用虚拟主机将 streaming.fusion.tk 从我的 web 服务器转发到我的内部 emby 服务器。

我已经在 /etc/apache2/sites-available/ 中设置了一个名为 streaming.conf 的配置文件

<VirtualHost *>
ServerName streaming.fusion.tk
ServerAdmin fusion@localhost

ProxyRequests off
<Proxy "*">
Order deny, allow
Allow from all
</Proxy>

ProxyPass / http://192.168.0.203:8096/
ProxyPassReverse / http:192.168.0.203:8096/

</VirtualHost>

我使用 sudo nano a2ensite streaming.conf 启用了该站点并重新启动了 apache2 服务

当我尝试访问该网站时,我无法访问任何内容。

希望得到一些帮助。

答案1

我编辑了我的 streaming.conf 文件并添加了以下内容

<Proxy http://192.168.0.203:8096>
Require all granted
Options None
</Proxy>

现在我可以访问 streaming.fusion.tk

相关内容