Sure - here are the contents of those:
config.json
{
"base_url": "http://forum.myurl.com",
"port": "4567",
"secret": "*****",
"bind_address": "0.0.0.0",
"database": "redis",
"redis": {
"host": "127.0.0.1",
"port": "6379",
"password": "redisPW",
"database": "0"
},
"bcrypt_rounds": 12,
"upload_path": "/public/uploads",
"use_port": false,
"relative_path": ""
}
nginx config
server {
listen 10.100.10.20:80;
server_name forum.myurl.com;
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";
}
}
The log files are there but they are empty. I can't even bring it up on the port number with nginx on/off. When it did work before, I had an apache vhost configured for it on port 80 but even that wasn't working anymore. I have tried removing and re-downloading nodebb a few times, tried a slew of different configurations. Maybe I need to change my redis db? I have always been using 0. It was working at one point (on the port) and some people set some stuff up, I wonder if that's interfering?
As far as what its doing now, it doesn't even connect - it just times out.