46.101.153.238 так открывается.
А так
autostudy.sk нет.
Вот код Nginx
upstream puma {
server unix:///home/deploy/apps/autostudy_project/shared/tmp/sockets/autostudy_project-puma.sock;
}
server {
listen 80;
server_name autostudy.sk www.autostudy.sk;
root /home/deploy/apps/autostudy_project/current/public;
access_log /home/deploy/apps/autostudy_project/current/log/nginx.access.log;
error_log /home/deploy/apps/autostudy_project/current/log/nginx.error.log info;
location ^~ /assets/ {
gzip_static on;
expires max;
add_header Cache-Control public;
}
try_files $uri/index.html $uri @puma;
location @puma {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://puma;
}
error_page 500 502 503 504 /500.html;
client_max_body_size 10M;
keepalive_timeout 10;
}