我想使用两个具有不同IP地址的不同域,例如
domain1.com - 12.34.56.78
domain2.com - 98.76.54.32
我在Linux OS上使用 nginx 。我应该在我的nginx.conf中添加什么内容?
答案 0 :(得分:8)
您必须使用server
阻止创建两个虚拟主机。
假设/var/www
包含domain1.com
和domain2.com
目录,包含任何HTML页面,CGI脚本,......
server {
listen 12.34.56.78:80;
server_name domain1.com
index index.html;
root /var/www/domain1.com
}
server {
listen 98.76.54.32:80;
server_name domain2.com;
index index.html;
root /var/www/domain2.com
}