Themes not showing, admin side
-
tried changing the config file to this, didn't help
{ "url": "http://something.com:4567", "secret": "xxxxxxxxxxxxxxxxxxxxx", "database": "mongo", "mongo": { "host": "127.0.0.1", "port": "27017", "username": "", "password": "", "database": "nodebb", "uri": "" }, "port": "4567" }
-
nginx config
server { listen 80; server_name whatever.com; location / { 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_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"; } }
-
[FAQ] Websockets not working due to misconfigured origins
This FAQ is applicable for the following situations: You're receiving the following error in the Javascript console: WebSocket connection to 'wss:///socket...
NodeBB Community (community.nodebb.org)
-
@qwerty yes, after running
./nodebb stop
, NodeBB should not be running.What did you try? Does it work when running with
./nodebb dev
?
Copyright © 2024 NodeBB | Contributors