Hi there,
I am unable to get a nginx reverse proxy to work for letting me access the web UI from a FQDN.
Here are the relevant details:
nginx host: 10.0.3.4
web ui: 10.0..3.1:8006 (IP of the main pve host, it's a vmbr)
Config:
I get 'too many redirects' as a response.
I've also looked at the nginx guide but that uses the pve's certificates which I can't access from the nginx host (LXC).
I'm using letsencrypt for the certificates.
Is there anything that I'm doing wrong for the config?
I am unable to get a nginx reverse proxy to work for letting me access the web UI from a FQDN.
Here are the relevant details:
nginx host: 10.0.3.4
web ui: 10.0..3.1:8006 (IP of the main pve host, it's a vmbr)
Config:
Code:
location / {
proxy_pass http://10.0.3.1:8006;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
}
I get 'too many redirects' as a response.
I've also looked at the nginx guide but that uses the pve's certificates which I can't access from the nginx host (LXC).
I'm using letsencrypt for the certificates.
Is there anything that I'm doing wrong for the config?