login issues when changinf the web-host #1856
Unanswered
saleemalharir1
asked this question in
Q&A
Replies: 1 comment 1 reply
-
You need to provide |
Beta Was this translation helpful? Give feedback.
1 reply
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.
-
so when i update the link in the snap web-host
and then i add this code to my nginx
location /semaphore/ {
proxy_pass http://localhost:3000/;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_buffering off;
proxy_request_buffering off;
}
location /semaphore/api/ws {
proxy_pass http://localhost:3000/api/ws;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Origin "";
Beta Was this translation helpful? Give feedback.
All reactions