在nginx和php上访问被拒绝

前端之家收集整理的这篇文章主要介绍了在nginx和php上访问被拒绝前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用Nginx web服务器和PHP. Nginx正在工作,我看到’欢迎来到Nginx!’但是在尝试访问PHP页面时我得到“访问被拒绝”.我还安装了PHP-fastcgi.

这是我的Nginx默认conf:

# redirect server error pages to the static page /50x.html
#
error_page   500 502 503 504  /50x.html;
location = /50x.html {
    root   /usr/share/Nginx/html;
}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.PHP${
#    proxy_pass   http://127.0.0.1;
#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.PHP${
    root   /usr/share/Nginx/html;
    fastcgi_index  index.PHP;
    fastcgi_pass unix:/var/run/PHP5-fpm.sock;
    include fastcgi_params;
   # fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
    include        fastcgi_params;
}

# deny access to .htaccess files,if Apache's document root
# concurs with Nginx's one
#
location ~ /\.ht {
    deny  all;
}

我在/etc/PHP-fpm.d/www.conf中激活了security.limit_extensions = .PHP .PHP3 .PHP4 .PHP5 .html和listen = /var/run/PHP5-fpm.sock,在/中激活了cgi.fix_pathinfo = 0等/ PHP5 / FPM / PHP.ini中

我重启了NginxPHP5-fpm.

谢谢你的帮助.

最佳答案
如果您有次要位置,请这样做

location / {

        try_files $uri $uri/ =404;  

        root /path/to/your/www;
        fastcgi_split_path_info ^(.+\.PHP)(/.+)$;
        fastcgi_pass unix:/var/run/PHP5-fpm.sock;
        fastcgi_index index.PHP;
        include fastcgi_params;

        fastcgi_param   PATH_INFO         $fastcgi_path_info;
            fastcgi_param   SCRIPT_FILENAME   $document_root$fastcgi_script_name;

    }

这两个参数是魔术酱:

fastcgi_param   PATH_INFO         $fastcgi_path_info;
fastcgi_param   SCRIPT_FILENAME   $document_root$fastcgi_script_name;
原文链接:https://www.f2er.com/nginx/434825.html

猜你在找的Nginx相关文章