nginx php7配置
Posted longqin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx php7配置相关的知识,希望对你有一定的参考价值。
1,在nginx.conf 文件中添加
include vhosts/*.conf;
2,在vhosts文件夹中新建 www.dome.com.conf文件 ,配置内容如下:
server { listen 80; server_name www.test.com; root d:/server/www; location / { index index.php index.html index.htm; if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=/$1 last; break; } } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } location ~ .php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_read_timeout 150; fastcgi_split_path_info ^((?U).+.php)(/?.+)$; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info; include fastcgi_params; } }
以上是关于nginx php7配置的主要内容,如果未能解决你的问题,请参考以下文章
CentOS 7 下配置 Nginx + PHP7.1 + MariaDB 以及 Laravel 框架 2018.3.11