@19eighties You would access the site with http://u1kkea75fe43.19eighties.koding.io:4567
The first line (base URL) should be http://u1kkea75fe43.19eighties.koding.io
, the defaults are fine for the rest of the options.
You can do sudo nano config.json
in your NodeBB folder to check what your settings are, they should look like this:
{
"base_url": "http://u1kkea75fe43.19eighties.koding.io",
"port": "4567",
"secret": "random-string-of-characters",
"bind_address": "0.0.0.0",
"database": "redis",
"redis": {
"host": "127.0.0.1",
"port": "6379",
"password": "",
"database": "0"
},
"bcrypt_rounds": 12,
"upload_path": "/public/uploads",
"use_port": true,
"relative_path": ""
}
Then once you've confirmed it's right, you can run ./nodebb start and visit the above URL with the port number included. If it's not loading, try running ./nodebb dev. Just to make sure you've not got any errors.