Linux

ProxyPass 不工作 - Apache2

  • May 3, 2020
<VirtualHost *:80>
ServerAdmin callumokane123@gmail.com
ServerName server.maniabots.xyz
ProxyPreserveHost On

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

以上,我以前在其他伺服器上使用過的,不想在我的伺服器上工作,只是列出了預設目錄。

嘗試在 Apache 上啟用代理模組:

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

# restart the apache service
sudo systemctl restart apache2

引用自:https://serverfault.com/questions/1015017