Replies: 1 comment
-
I had to abandon using this project because I couldn't resolve this same issue. If it's ever resolved, I'd love to return. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I have this config and I am trying to get it to work with nginx proxy manager. UNMS uses wss. I have the UI for UNMS loading and working correctly I believe I am having issues with the proxy_headers. https://help.ui.com/hc/en-us/articles/115015690207-UISP-Reverse-Proxy
`map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80;
server_name uisp.example.com;
client_max_body_size 4G;
location / {
proxy_redirect off;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8080/;
}
}
server {
listen 443 ssl http2;
server_name uisp.example.com;
ssl_certificate /etc/letsencrypt/live/uisp.example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/uisp.example.com/privkey.pem;
ssl on;
set $upstream 127.0.0.1:8443;
location / {
proxy_pass https://$upstream;
proxy_redirect https://$upstream https://$server_name;
}
}`
Beta Was this translation helpful? Give feedback.
All reactions