Nginx сайт недоступен извне.
Вот конфиг из sites-enabled
server {
listen 80;
root /usr/share/nginx/www;
index index.html index.htm;
server_name msq-gaming.pro;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.html;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
allow ::1;
deny all;
}
}