Apache 反向代理不适用于 80 和 443 以外的端口

Apache 反向代理不适用于 80 和 443 以外的端口

当我以这种方式配置反向代理时,一切都运行正常。

<VirtualHost *:80>
    ProxyPreserveHost On
    ServerName isa.example.com
    ProxyPass / http://192.168.178.192:5000/
    ProxyPassReverse / http://192.168.178.192:5000/
</VirtualHost>

但是这样,使用随机端口 1920(本例中)就没有任何作用。

<VirtualHost *:1920>
    ProxyPreserveHost On
    ServerName isa.example.com
    ProxyPass / http://192.168.178.192:5000/
    ProxyPassReverse / http://192.168.178.192:5000/
</VirtualHost>

错误可能出在哪里?防火墙确实打开了 1920 端口

相关内容