NGINX/PHP下载而不是执行

前端之家收集整理的这篇文章主要介绍了NGINX/PHP下载而不是执行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个运行fastcgi / PHPNginx服务器.我需要添加userdirs,但是我不能让PHP执行文件 – 它只是问我是否要下载它.它的工作没有userdir(例如它的工作在physibots.info/hugs.PHP,但不是physibots.info/~kisses/hugs.PHP).

配置:

server {
    listen      80;
    server_name physibots.info;
    access_log  /home/virtual/physibots.info/logs/access.log;

    root /home/virtual/physibots.info/public_html;

    location ~ ^/~(.+?)(/.*)?\.PHP${
        fastcgi_param SCRIPT_FILENAME /home/$1/public_html$fastcgi_script_name;
        fastcgi_pass unix:/tmp/PHP.socket;
    }

    location ~ ^/~(.+?)(/.*)?${
        alias /home/$1/public_html$2;
        autoindex on;
    }

    location ~ \.PHP${
        try_files $uri /error.html/$uri?null;
        fastcgi_pass unix:/tmp/PHP.socket;
    }
}
之前我在另一台服务器上遇到过类似的问题.我的问题是脚本containerd<?采取所有这些,并在其后面放置PHP(像这样<?PHP)在脚本中出现的任何地方执行文件,而不是下载它们. 希望有帮助.
原文链接:https://www.f2er.com/nginx/435054.html

猜你在找的Nginx相关文章