You are right. I was fixed enabling Custom SMTP and set port 25 and all parameters there:
7a415c76-1996-4413-9051-37f5ae283b9d-image.png
After upgrading to 1.5.x version from 1.4.x, nodebb could only run on 0.0.0.0:8080 instead of port 4567 set in the config.json. I am pretty sure that there's no process listening on port 4567.
Here's the my config.json
{
"url": " mystieurl",
"port":"4567",
"secret": "secret number",
"database": "mongo",
"mongo": {
"host": "127.0.0.1",
"port": "27017",
"username": "usr",
"password": "pass",
"database": "db"
}
}
@kinchtwck You should specify http://
or https://
in the url
property.
pretty sure there's no process
Well, you can use lsof -i tcp:4567
to check for sure