Nginx中不同IP的不同域名?

时间:2012-07-16 05:40:21

标签: nginx

我想使用两个具有不同IP地址的不同域,例如

domain1.com - 12.34.56.78 
domain2.com - 98.76.54.32

我在Linux OS上使用 nginx 。我应该在我的nginx.conf中添加什么内容?

1 个答案:

答案 0 :(得分:8)

您必须使用server阻止创建两个虚拟主机

假设/var/www包含domain1.comdomain2.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
}