博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx 虚拟主机 VirtualHost 配置
阅读量:5991 次
发布时间:2019-06-20

本文共 1160 字,大约阅读时间需要 3 分钟。

原文地址: 

增加 Nginx 虚拟主机

1. 进入 /usr/local/nginx/conf/目录, 创建虚拟主机配置文件 demo.neoease.com.conf ({域名}.conf).

2. 打开配置文件, 添加服务如下:

log_format demo.neoease.com '$remote_addr - $remote_user [$time_local] $request''$status $body_bytes_sent $http_referer ''$http_user_agent $http_x_forwarded_for';server {	listen       80;	server_name demo.neoease.com;	index index.html index.htm index.php;	root  /var/www/demo_neoease_com;		#access_log  /var/log/demo.neoease.com.log demo.neoease.com;}
3. 打开 Nginx 配置文件 /usr/local/nginx/conf/nginx.conf, 在 http 范围引入虚拟主机配置文件如下:

include demo.neoease.com.conf;
4. 重启 Nginx 服务, 执行以下语句.

service nginx restart

让 Nginx 虚拟主机支持 PHP

在前面第 2 步的虚拟主机服务对应的目录加入对 PHP 的支持, 这里使用的是 FastCGI, 修改如下.

log_format demo.neoease.com '$remote_addr - $remote_user [$time_local] $request''$status $body_bytes_sent $http_referer ''$http_user_agent $http_x_forwarded_for';server {	listen       80;	server_name demo.neoease.com;	index index.html index.htm index.php;	root  /var/www/demo_neoease_com;	location ~ .*\.(php|php5)?$ {		fastcgi_pass unix:/tmp/php-cgi.sock;		fastcgi_index index.php;		include fcgi.conf;	}	#access_log  /var/log/demo.neoease.com.log demo.neoease.com;}

转载地址:http://xjilx.baihongyu.com/

你可能感兴趣的文章
Windows中使用MySQL 数据查询(三)
查看>>
vue项目知识点总结
查看>>
L253 Valentine's Day
查看>>
SecureCRT下的串口无法输入
查看>>
ulimit 命令详解
查看>>
二分搜索 UVALive 6076 Yukari's Birthday (12长春K)
查看>>
二分搜索 POJ 3273 Monthly Expense
查看>>
ajax弹窗
查看>>
(iOS-网络)AFNetWorking网络框架的HTTP基本实现方法
查看>>
POJ1228:Grandpa's Estate——题解
查看>>
35.Node.js GET/POST请求
查看>>
[NOIp2005]篝火晚会
查看>>
不允许更改描述
查看>>
默认值更改
查看>>
转 重载、隐藏和覆盖的区别
查看>>
LeetCode:441. Arranging Coins
查看>>
【BearChild】
查看>>
移动前端开发之viewport的深入理解
查看>>
Java常用API解析——序列化API
查看>>
javascript中 for循环的一些写法 for length 以及for in 还有 for of 的区别
查看>>