首页 > 后端开发 > php教程 > 网站部署 - Nginx配置PHP显示502错误

网站部署 - Nginx配置PHP显示502错误

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
发布: 2016-06-06 20:26:03
原创
2223 人浏览过

nginx访问没有问题

nginx配置

<code>server {
        listen   8080;
     

        root /opt/nginx-1.7.8/html/demo;
        index index.php index.html index.htm;

        server_name example.com;

        location / {
                try_files $uri $uri/ /index.html;
        }

        error_page 404 /404.html;

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
              root /opt/nginx-1.7.8/html;
        }

        # pass the PHP scripts to FastCGI server listening on the php-fpm socket
        location ~ \.php$ {
                try_files $uri =404;
                fastcgi_pass  unix:/run/php5-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
                
        }</code>
登录后复制
登录后复制

/opt/nginx-1.7.8/html/demo目录下游index.php,然是访问报错502

<code>An error occurred.

Sorry, the page you are looking for is currently unavailable.
Please try again later.

If you are the system administrator of this resource then you should check the error log for details.

Faithfully yours, nginx.</code>
登录后复制
登录后复制

日志:

<code>2015/10/25 10:36:24 [crit] 12149#0: *1 connect() to unix:/run/php5-fpm.sock failed (13: Permission denied) while connecting to upstream, client: 219.217.226.133, server: example.com, request: "GET /index.php HTTP/1.1", upstream: "fastcgi://unix:/run/php5-fpm.sock:", host: "159.203.251.133:8080"

</code>
登录后复制
登录后复制

求助~

回复内容:

nginx访问没有问题

nginx配置

<code>server {
        listen   8080;
     

        root /opt/nginx-1.7.8/html/demo;
        index index.php index.html index.htm;

        server_name example.com;

        location / {
                try_files $uri $uri/ /index.html;
        }

        error_page 404 /404.html;

        error_page 500 502 503 504 /50x.html;
        location = /50x.html {
              root /opt/nginx-1.7.8/html;
        }

        # pass the PHP scripts to FastCGI server listening on the php-fpm socket
        location ~ \.php$ {
                try_files $uri =404;
                fastcgi_pass  unix:/run/php5-fpm.sock;
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
                
        }</code>
登录后复制
登录后复制

/opt/nginx-1.7.8/html/demo目录下游index.php,然是访问报错502

<code>An error occurred.

Sorry, the page you are looking for is currently unavailable.
Please try again later.

If you are the system administrator of this resource then you should check the error log for details.

Faithfully yours, nginx.</code>
登录后复制
登录后复制

日志:

<code>2015/10/25 10:36:24 [crit] 12149#0: *1 connect() to unix:/run/php5-fpm.sock failed (13: Permission denied) while connecting to upstream, client: 219.217.226.133, server: example.com, request: "GET /index.php HTTP/1.1", upstream: "fastcgi://unix:/run/php5-fpm.sock:", host: "159.203.251.133:8080"

</code>
登录后复制
登录后复制

求助~

日志已经写得很清楚了,是sock文件的权限问题,你需要让这个sock文件能够被nginx用户可写。可以配置为666,可以配置php-fpm以nginx用户启动,也可以让nginx用户加入php-fpm的组,然后sock设成660

贴出错误发现是权限问题。。。把/run/php5-fpm.sock改成777就没问题了。。

正确的应该怎样分配权限

我觉得起码得设置nginx用户拥有该权限

也可以考虑用php—fpm 9000端口的方式

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
重启nginx出错
来自于 1970-01-01 08:00:00
0
0
0
server - Nginx配置webapp问题
来自于 1970-01-01 08:00:00
0
0
0
Nginx的default.conf问题
来自于 1970-01-01 08:00:00
0
0
0
centos7 - NGINX出现异常
来自于 1970-01-01 08:00:00
0
0
0
uwsgi - 如何用nginx关联django应用
来自于 1970-01-01 08:00:00
0
0
0
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板