# mkdir -p /data/site/a.ttlsa.com
- 新建a站的首页index.html
# cat /data/site/a.ttlsa.com/index.htmlthis is a.ttlsa.com!
- 新建b.ttlsa.com站点根目录
# mkdir -p /data/site/b.ttlsa.com
- 新建b站首页index.html,内容如this is b.ttlsa.com!
# cat /data/site/b.ttlsa.com/index.htmlthis is b.ttlsa.com!
- 新建日志文件目录
# mkdir -p /data/logs/nginx我们统一讲日志存放到/data/logs下,这边是存放nginx日志,所以nginx日志保持在当前的nginx目录下.日志统一存放相对来说比较规范(如果你不习惯,你可以按自己的方式来做) 配置nginx虚拟主机
- 增加nginx主配置文件nginx.conf
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '# '$status $body_bytes_sent "$http_referer" '# '"$http_user_agent" "$http_x_forwarded_for"';
- 配置nginx主配置文件
# vim /usr/local/nginx-1.5.1/conf/nginx.confserver{server_name a.ttlsa.com;listen 80;root /data/site/a.ttlsa.com;access_log /data/logs/nginx/a.ttlsa.com-access.log main;location /{}}server{server_name b.ttlsa.com;listen 80;root /data/site/b.ttlsa.com;access_log /data/logs/nginx/b.ttlsa.com-access.log main;location /{}}
- 配置讲解
# /usr/local/nginx-1.5.1/sbin/nginx -tnginx: the configuration file /usr/local/nginx-1.5.1/conf/nginx.conf syntax is oknginx: configuration file /usr/local/nginx-1.5.1/conf/nginx.conf test is successful如果看到以上两行ok和successful就表示配置问题,那接下来我们启动nginx 启动nginx
# /usr/local/nginx-1.5.1/sbin/nginx访问a.ttlsa.com、b.ttlsa.com(我这边DNS已经解析到了192.168.1.201,在测试的情况下,我们可以通过版本hosts即可),绑定host方法如下: 讲如下内容增加到C:\Windows\System32\Drivers\etc\hosts
192.168.1.201 a.ttlsa.com192.168.1.201 b.ttlsa.com以上是windows绑定hosts方式,如下是linux方式
echo "192.168.1.201 a.ttlsa.com192.168.1.201 b.ttlsa.com" >> /etc/hosts使用浏览器访问这两个站点。我这边使用curl来访问。
[root@ns conf]# curl http://a.ttlsa.comthis is a.ttlsa.com! //a站点内容[root@ns conf]# curl http://b.ttlsa.comthis is b.ttlsa.com! //b站点内容其他指令
- 关闭nginx
/usr/local/nginx-1.5.1/sbin/nginx -s stop
- 重启nginx
/usr/local/nginx-1.5.1/sbin/nginx -s reload //修改配置之后reload,实际上严格意义来说这不是转载请注明出处:http://www.ttlsa.com/html/1571.html