I followed the tutorial below except "Configuring nginx". https://docs.nodebb.org/installing/os/debian/#configuring-nginx
my nodebb/config.json is like below.
{
"url": "https://MYDOMAIN",
"secret": "DEFAULT SECRET",
"database": "mongo",
"mongo": {
"host": "127.0.0.1",
"port": "27017",
"username": "nodebb",
"password": "MYPASSWORD",
"database": "nodebb",
"uri": ""
},
"port": "4568"}
I set port 4568 because some other process is on 4567. There was no error in setup, but I can't access https://MYDOMAIN:4568.
I command "./nodebb log", it says "info: NodeBB is now listening on: 0.0.0.0:4568" and never progress.
Any help is appreciated.