码迷,mamicode.com
首页 > 其他好文 > 详细

(一)ngxin默认虚拟主机

时间:2017-12-17 12:18:24      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:post   ges   size   vhost   his   com   div   serve   配置文件   

 一、修改nginx.conf配置文件

技术分享图片

 

mkdir /usr/local/ngxin/conf/vhost             #创建vhost 子目录

vim /usr/local/ngxin/conf/vhost/aaa.com.conf     #编辑一个文件 添加下面内容

server
{

listen 80 default_server; 
server_name aaa.com;
index index.html index.htm index.php;
root /data/wwwroot/default;

}

 

mkdir -p /data/wwwroot/default      #创建网站所放的目录

vim index.html   #创建网站首页

This is the default size            #添加内容

 

/usr/local/nginx/sbin/nginx -t      #检查配置文件是否错误

/usr/local/nginx/sbin/nginx -s reload    #重新加载 

技术分享图片

 

(一)ngxin默认虚拟主机

标签:post   ges   size   vhost   his   com   div   serve   配置文件   

原文地址:http://www.cnblogs.com/lh777/p/8051501.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!