Problem with fresh install
-
Well. After a reboot of my server i relaunch nodebb and...
In the log the server is stuck in some weird loop, start.. start... start... http://pastebin.com/YEsKtfEq
I've got this problem this morning i killed all related pid and i restarted normally the nodebb, now it don't work..CPU @ 100% USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND www 5789 0.0 0.0 22172 2272 pts/0 S 11:24 0:00 bash www 9311 0.1 0.0 636188 12700 ? Ssl 11:30 0:00 /usr/bin/nodejs /home/www/toloza.fr/t2si.toloza.fr/nodebb/loader -d start www 9933 95.6 0.5 645456 87204 ? Rl 11:30 0:02 /usr/bin/nodejs minifier.js www 9945 83.5 0.5 640336 82268 ? Rl 11:30 0:01 /usr/bin/nodejs minifier.js www 9948 93.0 0.4 734516 77192 ? Rl 11:30 0:00 /usr/bin/nodejs ./app -d start www 9957 43.0 0.3 622856 54404 ? Rl 11:30 0:00 /usr/bin/nodejs minifier.js
WTF
XaT
-
Well, i solved the main problem with switching from eth0:0 to eth0 with my first ipv4.
At home i can access normaly the forum on ip1:4567 but i've the same problem than yesterday for the proxyfi thing.
I've tested lighttpd & nginx for proxyfi... don't work.I can access to the main page but i can't do anything.. It said "connection lose"..
Have you any idea ??
XaT
-
Thank you.
Well my problem now is the fucking proxy @ workedit: Erm.. Why i can access this forum nice and can't use mine correctly ?! I don't get it.
edit2 : Can you navigate through the forum ? I can access main page too. But can't use functionnalities.. Like connect, post, see a thread, etcXaT
-
My conf@nginx
server { listen 80; server_name t2si.toloza.fr; 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"; } }