I have a website, mywebsite.io
And this file /etc/nginx/conf.d/mywebsite.io.conf
server {
listen 80;
listen [::]:80;
server_name mywebsite.io;
location / {
proxy_pass http://localhost:4000/;
}
}
But when I visit my site I see the nginx splash page. Any clue why? From what I have seen online this is right.