不同域的不同IP在Nginx的?(Different Domains on Different IP

2019-09-19 12:52发布

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

domain1.com - 12.34.56.78 
domain2.com - 98.76.54.32

我使用Linux操作系统的nginx。 我应该在我的nginx.conf补充的吗?

Answer 1:

你必须创建使用两个虚拟主机 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
}


文章来源: Different Domains on Different IP's in Nginx?
标签: nginx