例如,我想要使用具有不同IP地址的两个不同的域
domain1.com - 12.34.56.78 domain2.com - 98.76.54.32
我在Linux操作系统上使用nginx 。 我应该在我的nginx.conf中添加什么?
您必须使用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 }