萍果7s报价以及图片:nginx多IP域名绑定

来源:百度文库 编辑:九乡新闻网 时间:2024/04/27 18:24:56
nginx多IP域名绑定

文件nginx.conf

  1. include /usr/local/nginx/conf/vhost/www_domain1_com.conf; 
  2. include /usr/local/nginx/conf/vhost/www_domain2_com.conf; 

文件www_domain1_com.conf:

  1. server 
  2.         { 
  3.                 listen 199.71.255.001:80; 
  4.                 server_name www.domain1.com;   
  5.                root  /web/www/domain1; 
  6. ............. 

文件www_domain2_com.conf:

  1. server 
  2.         { 
  3.                 listen 199.71.255.002:80; 
  4.                 server_name www.domain2.com; 
  5.                 root  /web/www/domain2; 
  6. .............