标签:pass document 域名 include sts php7 ## hosts script
Nginx 版本:nginx/1.10.3 (Ubuntu)
第一步:创建Nginx 虚拟主机
Nginx 安装成功安装并且可以运行之后,在 /etc/nginx 目录下创建vhosts 目录,并且打开nginx.conf 文件,在http模块中,将vhosts
文件下所有以.conf文件包含进来,这样就可以在vhosts下创建不同域名的server,结构比较清晰。
include /etc/nginx/vhosts/*.conf;
server { listen 80; server_name test.com; index aa.php; root /var/www/test; location / { try_files $uri $uri/ /index.php?$query_string; } location ~ \.php$ { fastcgi_pass unix:/run/php/php7.0-fpm.sock; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } }
##这里有两个location,location / 的优先级 比 location ~ \.php$ 的优先级要低
##设置的index 为aa.php
标签:pass document 域名 include sts php7 ## hosts script
原文地址:http://www.cnblogs.com/alin-qu/p/7894714.html