Nginx 500 internal error -


   http {  server {         listen   443 ssl;         server_name node.ramblr.io;         server_tokens off;         root /home/john/public_html/node.ramblr.io;         index index.php index.html index.htm;                 ssl                  on;             ssl_certificate      /etc/pki/tls/certs/node.ramblr.io.crt;             ssl_certificate_key  /etc/pki/tls/private/node.ramblr.io.key;             ssl_session_timeout  5m;             ssl_protocols  sslv3 tlsv1;             ssl_ciphers  all:!adh:!export56:rc4+rsa:+high:+medium:+exp;             ssl_prefer_server_ciphers   on;                     location / {             try_files $uri $uri/ /index.html;             }                   location ~ /\.ht {                    deny all;                     }     } } 

its in nginx.conf

that nginx config, have 2 other sites reversed proxied , work index.php reason. want know why getting 500 internal error off this.

here of error logs nginx

2016/01/16 00:32:36 [crit] 6458#0: *5 stat() "/home/john/public_html/node.ramblr.io//index.html/index.html/index.html/index.html/index.html/index.html/index.html/index.html/index.html/index.html" failed (13: permission denied), client: 77.98.3.250, server: node.ramblr.io, request: "get / http/1.1", host: "node.ramblr.io" 2016/01/16 00:32:36 [crit] 6458#0: *5 stat() "/home/john/public_html/node.ramblr.io//index.html/index.html/index.html/index.html/index.html/index.html/index.html/index.html/index.html/index.html" failed (13: permission denied), client: 77.98.3.250, server: node.ramblr.io, request: "get / http/1.1", host: "node.ramblr.io" 2016/01/16 00:32:36 [error] 6458#0: *5 rewrite or internal redirection cycle while internally redirecting "//index.html/index.html/index.html/index.html/index.html/index.html/index.html/index.html/index.html/index.html/index.html", client: 77.98.3.250, server: node.ramblr.io, request: "get / http/1.1", host: "node.ramblr.io" 2016/01/16 00:32:48 [crit] 6458#0: *6 stat() "/home/john/public_html/ramblr.io/" failed (13: permission denied), client: 77.98.3.250, server: ramblr.io, request: "get / http/1.1", host: "test.animegrinder.com" 2016/01/16 00:32:48 [crit] 6458#0: *6 stat() "/home/john/public_html/ramblr.io/" failed (13: permission denied), client: 77.98.3.250, server: ramblr.io, request: "get / http/1.1", host: "test.animegrinder.com" 


Comments

Popular posts from this blog

c - How to retrieve a variable from the Apache configuration inside the module? -

c# - Constructor arguments cannot be passed for interface mocks -

python - malformed header from script index.py Bad header -