Everything was working fine… eventually i restarted the server to check something… and now this error is showing all over the place. 138.197.92.156 domains also please help
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
server { listen 80 default_server; listen [::]:80 default_server;
}
Virtual Host configuration for example.com
You can move that to a different file under sites-available/ and symlink that
to sites-enabled/ to enable it.
#server {
listen 80;
listen [::]:80;
server_name example.com;
root /var/www/example.com;
index index.html;
location / {
try_files $uri $uri/ =404;
}
#}
@geeber05 Can you post your Nginx server block configuration? Also make sure you actually have files in that directory
ls -l /var/www/html
Hi @geeber05 Run this command to show the last errors in Nginx: