Hi
I installed nodebb a while back without issue, now on a new server trying out latest version & having issues.
so some info:
nodebb version: 1.6.1
nodejs version: 6.11.4
nginx version: 1.10.3
I followed the guide for my OS ubuntu
16.04.2 from here.
note: the systemd service type is incorrectly assumed as simple. It should be forking instead because the process forks a child. I modified and have the processes running.
Cool, execpt two problems
On: ./nodebb setup
I see that admin acct creation is skipped... how do I login as admin?
Also: I see connection to NodeBB has been lost, attempting to reconnect...
on the homepage and the spinning blobs in nav bar. How to fix?
I have standard nginx config file:
server {
listen 80;
server_name shout.frommyserver.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";
}
location ~ /.well-known {
allow all;
}
}
What am I missing here?