ngxin默认虚拟主机

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ngxin默认虚拟主机相关的知识,希望对你有一定的参考价值。

 一、修改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默认虚拟主机的主要内容,如果未能解决你的问题,请参考以下文章

apache默认虚拟主机

LAMP--默认虚拟主机

sh Ngxin动态配置域名

一键源码安装ngxin

ngxin设置日志格式

Ngxin