3
0

fix documentation to match new TCP port of webui

This commit is contained in:
2023-07-06 00:02:01 +02:00
parent ec467234ec
commit 9c545d1ace
3 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ Network (HA) setup with IPv4 NAT:
- webserver on nodes:
* port 8080: receives transparent http redirects from the firewall; should return a temporary redirect to your portal page.
* port 80: redirect to https
* port 443: reverse-proxy to 127.0.0.1:8000 (the webui backend), but serve `/static` directly from directory (see main README)
* port 443: reverse-proxy to 127.0.0.1:5001 (the webui backend), but serve `/static` directly from directory (see main README)
To access the portal page on the clients you'll need a DNS-name; it should point to the virtual addresses. In some ways downlink address is preferred, but you also might want to avoid private addresses - i.e. use the uplink IPv4 address and the downlink IPv6 address.

View File

@ -39,5 +39,5 @@ Listen 8080
ProxyRequests Off
ProxyPreserveHost On
ProxyPass /static !
ProxyPass / http://127.0.0.1:8000/
ProxyPass / http://127.0.0.1:5001/
</VirtualHost>