编辑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
测试,默认虚拟主机,不管什么域名,都会指向这个站点
[[email protected] default]# curl localhost echo “This is a default site.” [[email protected] default]# curl -x127.0.0.1:80 123.com echo “This is a default site.” [[email protected] default]# curl -x127.0.0.1:80 aaa.com echo “This is a default site.” [[email protected] default]# curl -x127.0.0.1:80 www.baidu.com echo “This is a default site.”
原文地址:https://www.cnblogs.com/chyuanliu/p/9043574.html
时间: 2024-10-31 09:59:16