Installing NodeBB locally resulting in weird URL
Solved
Technical Support
-
I've just installed NodeBB locally but when I access the forum via http://127.0.0.1:4567 I get a weird redirect to http://127.0.0.1:4567/example/public_html//
Why might that be?
My server block looks like this:
server { listen 80; server_name localhost; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-NginX-Proxy true; proxy_pass http://127.0.0.1:4567/; proxy_redirect off; # Socket.IO Support proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } }
I'm using NodeBB 0.7.3, Redis 3.0.3, Nginx, Ubuntu 14.04
-
I reinstalled Redis and things are now fine.
Copyright © 2024 NodeBB | Contributors