配置nginx支持php

不言
不言 原创
2023-03-25 13:14:02 966浏览

这篇文章主要介绍了关于配置nginx支持php,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

 server {
        listen       80;
        server_name  localhost;
        #charset koi8-r;
        #access_log  logs/host.access.log  main;
        location / {
            root   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   html;
        }
     
   location ~ \.php$ {
                root           html;
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include        fastcgi_params;
        }

必须将代码写在server内

保存重启nginx

重启php service php-fpm restart

相关推荐:

配置nginx php mysql 自动启动

以上就是配置nginx支持php的详细内容,更多请关注php中文网其它相关文章!

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。