hey guys,
fell in love with NodeBB as soon as i saw it, so i had to get it going for myself.
signed up for a digital ocean droplet and seemed to have everything working.
the only problem i have come across is with the NGINX proxy/redirect. i have never worked with it before, and while i have tried, it just doesn't seem to be working for me.
i am trying to get the forum working on a subdomain from our main site, and without the need for the port.
i have managed to get the subdomain working fine, as you can see at www.talk.cloudmounta.in:4567 but without the port there, it just shows the NGINX holding page.
can anyone help me to get this working? i feel like i have just been going round in circles trying to get it to work...
I have the NGINX config in a number of places:
etc/nginx/conf.d/server.conf
etc/nginx/nginx.conf
etc/nginx/sites-available/default
etc/nginx/sites-enabled/default
using the same setup as the wiki (https://github.com/designcreateplay/NodeBB/wiki/Configuring-nginx-as-a-proxy-to-NodeBB) with NGINX 1.4.7
my config.json file is as follows (with sensitive info removed)
{
"base_url": "http://talk.cloudmounta.in",
"port": "4567",
"use_port": true,
"secret": "XXXXX",
"bind_address": "127.0.0.1",
"database": "redis",
"redis": {
"host": "127.0.0.1",
"port": "6379",
"password": "XXXXX",
"database": "0"
},
"bcrypt_rounds": 12,
"upload_path": "/public/uploads",
"relative_path": ""
}
any pointers?