Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/286.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
下载Php文件,而不是使用Nginx服务器在OSX上执行_Php_Macos_Nginx_Osx Elcapitan - Fatal编程技术网

下载Php文件,而不是使用Nginx服务器在OSX上执行

下载Php文件,而不是使用Nginx服务器在OSX上执行,php,macos,nginx,osx-elcapitan,Php,Macos,Nginx,Osx Elcapitan,您好,我已经安装了nginx和php。 我使用的是OSX El capitan,php fpm和nginx版本是nginx 1.12.1和php7 我的服务器正在工作,因为我能够在浏览器中打开存储在文档根目录下的html文件,但当我尝试打开存储在同一位置的php文件时,它会被下载而不是执行 我的nginx.conf文件内容如下: #user username staff; worker_processes 1; #error_log logs/error.log; #error_log

您好,我已经安装了nginx和php。 我使用的是OSX El capitan,php fpm和nginx版本是nginx 1.12.1和php7 我的服务器正在工作,因为我能够在浏览器中打开存储在文档根目录下的html文件,但当我尝试打开存储在同一位置的php文件时,它会被下载而不是执行

我的nginx.conf文件内容如下:

#user  username staff;
worker_processes  1;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;
#log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    #gzip  on;

    server {
        listen       80;
        server_name  localhost;
#charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   /Users/username/Sites;
            index  index.php index.html index.htm;
        }


        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   /Users/username/Sites;
        }
# 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           /Users/username/Sites;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /scripts$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;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
#    }
    #}
    include servers/*;
}
在您的位置php部分替换为:

 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

显示nginx的配置文件。检查php fpm是否在corect端口上运行:netstat-tnlp | grep php fpm。您是否在编辑后重新启动了nginx?php文件现在没有下载,但我发现php文件的文件未找到问题是的,我使用命令“sudo nginx-s reload”重新启动了nginx,并且php fpm在端口9000index上运行。php位于/Users/username/Site文件夹中,nginx有权执行吗?尝试评论包括服务器/*;line.yes位于/Users/username/Site文件夹中,nginx有权使用它
 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;