ProxyPass 不起作用-Apache2

ProxyPass 不起作用-Apache2
<VirtualHost *:80>
ServerAdmin [email protected]
ServerName server.maniabots.xyz
ProxyPreserveHost On

ProxyPass / http://localhost:3000/
ProxyPassReverse / http://localhost:3000/
</VirtualHost>

上述内容我之前在其他服务器上使用过,但它无法在我的服务器上运行,只是列出了默认目录。

答案1

尝试在 Apache 上启用代理模块:

sudo a2enmod proxy
sudo a2enmod proxy_http
sudo a2enmod proxy_balancer
sudo a2enmod lbmethod_byrequests

# restart the apache service
sudo systemctl restart apache2

相关内容