当前位置: > Linux服务器 > nginx >

win7系统下安装、配置、测试nginx

时间:2016-10-21 21:33来源:linux.it.net.cn 作者:IT

1.nginx.org 下载nginx的稳定版zip包。

2.解压至本地目录如D:\nginx(主)。

 

功能:

1. cd到D:\nginx目录

2. 启动nginx: nginx -c conf\nginx.conf

3.  nginx.conf 关键配置文件如下:

 

 
  1. upstream www.wu.com{  
  2. server localhost:8090 weight=3;  
  3. server localhost:9090 weight=1;  
  4.    }  
  5.   
  6.    server {  
  7.        listen       80;  
  8.        #server_name  localhost;  
  9. server_name  www.wuwh.com;  
  10.          
  11.        location / {   
  12.        #proxy_pass         http://www.wuwh.com ;  
  13. proxy_pass         http://www.wu.com ;  
  14.        proxy_set_header   Host             $host;   
  15.        proxy_set_header   X-Real-IP        $remote_addr;   
  16.        proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;   
  17.    }   

4.把D:\nginx整个目录复制到 D:\nginx1  D:\nginx2(负载机)

 

   (1)分别cd到D:\nginx1   D:\nginx2

   (2)启动nginx, D:\nginx1 、D:\nginx2目录下的conf\nginx.conf文件的关键配置如下:

        

  1. server{  
  2.       
  3.     listen 8090;  
  4.     server_name www.wu.com;  
  5.      
  6.     access_log logs/access.log;  
  7.     location /{  
  8.     index index.html;  
  9.     root htdocs;  
  10.     }  
  11.     }  


(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容