Cannot Login to nodebb: "Welcome back guest"
-
I'm running nodebb on Centos8 on a linode.
- NodeBB 1.16.2
- Node v10.21.0
- Redis server v=5.0.3
Recently I upgraded nodebb (I believe to 1.16.1), and lost the ability to log into the forum with Firefox (difficult for the admin). I go to the login form, enter the credentials, click submit, and the forum reloads with
/?loggedin=true
, and I get a notification:Obviously I was not logged in as myself. I cleared all cookies, tried multiple times, and could not login. I also had reports of the same behavior from other Firefox users. At some point I saw a message in the log when running
./nodebb dev
about a session not matching but I can't reproduce it now.I could still use Chrome for some reason, so I've been using that to try and debug. Then today I saw that 1.16.2 had been released so I upgraded, hoping that something might be fixed. After upgrading to 1.16.2, I am now unable to login with Chrome - nor Safari - either.
So I'm locked out of the forum, and I cannot figure out what's going on. The only error I've seen in the browser console is a few of these:
GET wss://<site>/socket.io/?EIO=4&transport=websocket&sid=R4V1asZABCvMb9lAAAC
with a 400 response.I'm stumped and frustrated. Any debugging/fixing tips?
--Steve
-
@sivy have you tried a private window? Have you tried a stop, build, start?
-
@sivy have you tried disabling plugins?
-
@sivy
./nodebb reset -p
-
Hello @sivy,
I had the same problem.
Using :
- Cloudflare with https rule for forcing https,
- Nginx mainline version has proxy_pass
Solved by changing on Nginx configuration proxy_pass :
proxy_set_header X-Forwarded-Proto $scheme;
To
proxy_set_header X-Forwarded-Proto https;
Don't understand why it suddently worked with this
-
arnaudw's solution worked for me, though for apache the command is
RequestHeader set X-Forwarded-Proto "https"
Thanks so much for the fix - I also don't understand this, but believe it has to do with a recent update to nodebb since my login was working in v1.16.0 and I updated to v1.16.2
-
@arnaudw said in Cannot Login to nodebb: "Welcome back guest":
Solved by changing on Nginx configuration proxy_pass :
proxy_set_header X-Forwarded-Proto $scheme;To
proxy_set_header X-Forwarded-Proto https;Today I changed the nginx config. Now I use a stream with map and a generic server in nginx.conf (see TLS Termination). This implied removing ssl and http2 from the server's listen directive in sites-enabled/my-site.
So, from:
listen 127.0.0.1:445 deferred ssl http2;
To
listen 127.0.0.1:445 deferred;
That's about my guess why https is required for proxy_set_header X-Forwarded-Proto now.
Thank you for your solution. Saved my day.
-
@arnaudw
I installed a new forum on a heroku server and when I connect via myapp.herokuapp.com it works great
But when I connect through my domain it is written to me "welcome back guest" but really stayed disconnected
(I only use a subdomain, at the domain root I use for another site, I use cloudflare I set ssl and force ssl)
I would be happy to help, thanks -