Nginx: This site can't be reached; permissions configuration? Nginx: This site can't be reached; permissions configuration? nginx nginx

Nginx: This site can't be reached; permissions configuration?


This error was resolved--now returns a 404 Not Found which is the expected behavior as I haven't pushed the app to the server yet--by modifying the following segment of /etc/nginx/sites-available/domainname

listen 80 default_server;listen [::]:80 default_server;

Modified to

listen 80 default_server;listen [::]:80 default_server ipv6only=on;

I had suspected this might be the problem but was convinced that in my previous run-in with this issue, I had tried this and had no success. At any rate, I hope this helps someone in the future.