首页 > 系统服务 > 详细

Linux10.3 Nginx默认虚拟主机

时间:2018-05-15 23:26:29      阅读:140      评论:0      收藏:0      [点我收藏+]

  编辑nginx配置文件

vim /usr/local/nginx/conf/nginx.conf

  删除server{}主机配置端,在最后增加

include vhost/*.conf
mkdir /usr/local/nginx/conf/vhost

  在vhost文件夹内,创建默认主机配置文件aaa.com.conf文件,编辑如下:

server
{
    listen 80 default_server;  // 有这个标记的就是默认虚拟主机
    server_name aaa.com;
    index index.html index.htm index.php;
    root /data/wwwroot/default;       //网站目录,不存在需要创建
}

  在网站目录创建html文件

echo “This is a default site.”>/data/wwwroot/default/index.html

  检查nginx配置文件语法,及重新加载配置文件

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

  测试,默认虚拟主机,不管什么域名,都会指向这个站点

[root@localhost default]# curl localhost
echo “This is a default site.”
[root@localhost default]# curl -x127.0.0.1:80 123.com
echo “This is a default site.”
[root@localhost default]# curl -x127.0.0.1:80 aaa.com
echo “This is a default site.”
[root@localhost default]# curl -x127.0.0.1:80 www.baidu.com
echo “This is a default site.”

  

Linux10.3 Nginx默认虚拟主机

原文:https://www.cnblogs.com/chyuanliu/p/9043574.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!