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

LNMP配置——Nginx配置 —— 默认虚拟主机

时间:2021-03-10 13:39:10      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:syntax   reload   一个   alt   bin   serve   lnmp   syn   dex   

一、配置

首先修改配置文件

#vi /usr/local/nginx/conf/nginx.conf

在最后一个结束符号}前加一行配置:

include vhost/*.conf;

意思就是/usr/local/nginx/conf/host下面的所有以.conf结尾的文件都会被加载

技术图片

 

 

#mkdir /usr/local/nginx/conf/vhost

#cd /usr/local/nginx/conf/vhost

#vim default.conf

写入

server

{

    listen 80 default_server;

    server_name aaa.com;

    index index.html index.htm index.php;

    root /data/nginx/default;

}

 

#/usr/local/nginx/sbin/nginx -t

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok

nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

技术图片

 

 

#/usr/local/nginx/sbin/nginx -s reload

mkdir -p /data/nginx/default

#echo "default_server" > /data/nginx/default/index.html

//创建索引页

二、检验测试

#curl -x127.0.0.1:80 aaa.com

//访问aaa.com

default_server

技术图片

 

 

#curl -x127.0.0.1:80 1212.com

//访问一个没有定义过的域名,也会访问aaa.com

default_server

技术图片

 

 

检验成功

LNMP配置——Nginx配置 —— 默认虚拟主机

标签:syntax   reload   一个   alt   bin   serve   lnmp   syn   dex   

原文地址:https://www.cnblogs.com/lsy579/p/14509916.html

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