Update reverse-proxies.md (#523)

After fighting with this for some time, it seems that the trailing slash
in apache config causes budget to think that the server is offline.
Removed.
This commit is contained in:
spoon1331
2024-12-05 18:06:15 +10:30
committed by GitHub
parent 2e9e5017fe
commit 4501211125

View File

@@ -155,8 +155,8 @@ Apache HTTP server can serve as a reverse proxy using [VirtualHosts](https://htt
SSLProxyEngine on
SSLCertificateFile /etc/letsencrypt/live/example.com/fullchain.pem
SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem
ProxyPass / https://127.0.0.1:5006/ # this can be a remote host, or a container IP
ProxyPassReverse / https://127.0.0.1:5006/
ProxyPass / https://127.0.0.1:5006 # this can be a remote host, or a container IP
ProxyPassReverse / https://127.0.0.1:5006
</VirtualHost>
```