微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Nginx配置PHP环境支持

打开Nginx配置文件

输入 vim etc/Nginx/Nginx.conf

找到配置扩展文件

打开配置文件配置如下环境:

server {

    listen       80;

    server_name  server.baishi360.cn;

 

    #charset koi8-r;

    #access_log  /var/log/Nginx/host.access.log  main;

 

    location / {

        root   /usr/share/Nginx/html;

        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   /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           html;

        fastcgi_pass   127.0.0.1:9000;

        fastcgi_index  index.PHP;

        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

 

        提示:“File Not Fond ”时改成绝对路:

        fastcgi_param  SCRIPT_FILENAME  /usr/share/Nginx/html$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;

    #}

}

 

<style></style>

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐