我有www.exampledomain1.com,www.exampledomain2.com,我在VPS IP上构建网站:11.22.333.444(示例)和nginx。
我做了什么:代表www.exampledomain1.com: DNS设置:
Type Host IP
A www.exampledomain1.com 11.22.333.444
Nginx设置(简称):
server{
server_name www.exampledomain1.com;
}
代表www.exampledomain2.com: DNS设置:
Type Host IP
A www.exampledomain2.com 11.22.333.444
Nginx设置(简称):
server{
server_name www.exampledomain2.com;
}
我的想法是:当www.exampledomain1.com在浏览器中出现时,我的nginx正在接收“Host”(server_name www.exampledomain.com),然后从正确的根目录中搜索我的网站。我做错了什么?