同一个nginx配置文件,请求不同的域名可以指定对应的目录
- nginx配置
cat long.conf
server {
listen 80;
server_name a.com b.com c.com;
location / {
root /home/long/$host/;
index index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
- 创建对应的目录
cd /home/long
mkdir a.com b.com c.com
#对应目录下创建index.html文件
echo 'test a.com' a.com/index.html
...
- 访问测试
本地测试,需将nginx所在的ip和域名加入到hosts里