Linux
ProxyPass 不工作 - Apache2
<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