Hey there. I sucefully installed NodeBB following this: DOCS
I already edited the path /etc/nginx/conf.d/nodebb.conf
But now I run the command sudo systemctl status nginx.service
And this is what I see in the terminal
Also

Nodebb.conf loos like this:
server {
listen [::]:443 ssl http2;
listen 443 ssl http2;
listen [::]:80;
listen 80;
mydomain.me;
client_max_body_size 50M;
# RSA
ssl_certificate /etc/letsencrypt/example.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/example.com/private.key;
# ECDSA
ssl_certificate /etc/letsencrypt/example.com_ecc/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/example.com_ecc/private.key;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
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";
}
}
Also added DNS Record with my server IP but It doesn't work. The IP is not referring users to domain. I don't know if i did something wrong with the Nginx. Note before editing nodebb.conf the command sudo systemctl status nginx.service
didn't had any error.