dqj96395 2016-08-09 09:28
浏览 1199
已采纳

nginx GET HTTP / 1.1“500 5

What's the problem?

I access the page without problems but when I try to access a link with jQuery, error 500 appears

195.16.143.6 - XXXXX [09/Aug/2016:08:54:12 +0000] "GET /XXXX.php HTTP/1.1" 500 5 "http://XXXXXX/" "Mozilla/5.0 (X11; Fedora; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36"

My conf:

server {
            ## Escucha en el puerto 80 (HTTP)
            listen 80;

            ## Raíz donde se encuentra la página Web
            root /srv/www/arbol/;

            ## Orden de prioridad de los archivos index
            index index.php index.html index.htm;

            server_name arbol.bichomen.com;
            access_log /var/log/nginx/arbol.log;

            try_files $uri $uri/ =404;
            auth_basic "Restricted";
            auth_basic_user_file /etc/nginx/.htpasswd;

            location / {
                    ## try_files $uri $uri/ =404;
            }

            location ~ \.php$ {
                   root /srv/www/arbol;
                   try_files $uri =404;
                   fastcgi_split_path_info ^(.+\.php)(/.+)$;
                   fastcgi_pass unix:/var/run/php5-fpm/arbol.sock;
                   fastcgi_param PATH_TRANSLATED $document_root$fastcgi_script_name;
                   fastcgi_index index.php;
                  ##  fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                   include fastcgi_params;
            }
    }
  • 写回答

1条回答 默认 最新

  • drpph80800 2016-08-09 12:10
    关注

    I found the error, it is a problem with PHP, and I generated another question:

    Call to undefined function

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效