1.獲取
下載地址:http://nginx.org/en/download.html
參考網址:http://nginx.org/en/docs/windows.html
2.准備工作,IIS創建倆個測試網站,參考截圖:
兩個網站的地址分別是(我本地的地址是192.168.31.233),兩個網站的名稱分別是端口的名稱,故兩個網站的地址分別是 192.168.31.233:8087和192.168.31.233:8088
3.nginx配置 (解壓之后 的conf文件夾中的 nginx.conf文件)
【解壓路徑放置到 非中文路徑,建議不要有空格,之前測試rabbitmq的時候,也遇到很多坑其實都是因為空格和中文路徑】

#user nobody; #指定nginx進程數量 worker_processes 1; #全局錯誤日志以及 PID文件 #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { # 連接數上限 worker_connections 1024; } http { #設定http服務器,利用它的反向代理功能提供均衡負載支持 include mime.types; default_type application/octet-stream; #設定日志格式 #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; #使用哪種格式的日志 #access_log logs/access.log main; #sendfile 指令指定 nginx 是否調用 sendfile 函數(zero copy 方式)來輸出文件,對於普通應用, sendfile on; #tcp_nopush on; #連接超時時間 #keepalive_timeout 0; keepalive_timeout 65; #開啟gzip壓縮 #gzip on; #設定負載均衡的服務器列表 支持多組的負載均衡,可以配置多個upstream 來服務於不同的Server. #nginx 的 upstream 支持 幾 種方式的分配 #1)、輪詢(默認) 每個請求按時間順序逐一分配到不同的后端服務器,如果后端服務器down掉,能自動剔除。 #2)、weight 指定輪詢幾率,weight和訪問比率成正比,用於后端服務器性能不均的情況。 跟上面樣,指定了權重。 #3)、ip_hash 每個請求按訪問ip的hash結果分配,這樣每個訪客固定訪問一個后端服務器,可以解決session的問題。 #4)、fair #5)、url_hash #Urlhash upstream mysvr { #weigth參數表示權值,權值越高被分配到的幾率越大 #1.down 表示單前的server暫時不參與負載 #2.weight 默認為1.weight越大,負載的權重就越大。 #3.backup: 其它所有的非backup機器down或者忙的時候,請求backup機器。所以這台機器壓力會最輕。 #server 192.168.31.233 down; #server 192.168.31.233 backup; server 192.168.31.233:8087 weight=1; server 192.168.31.233:8088 weight=2; } #配置代理服務器的地址,即Nginx安裝的服務器地址、監聽端口、默認地址 server { #1.偵聽80端口 listen 8086; #對於server_name,如果需要將多個域名的請求進行反向代理,可以配置多個server_name來滿足要求 server_name localhost; #charset koi8-r; #access_log logs/host.access.log main; location / { # 默認主頁目錄在nginx安裝目錄的html子目錄。 root html; index index.html index.htm; proxy_pass http://mysvr; #跟載均衡服務器的upstream對應 } #error_page 404 /404.html; # redirect server error pages to the static page /50x.html ## 定義錯誤提示頁面 #error_page 500 502 503 504 /50x.html; #location = /50x.html { # root html; #} # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # #location ~ \.php$ { # root html; # fastcgi_pass 127.0.0.1:9000; # fastcgi_index index.php; # fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; # include fastcgi_params; #} # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } # another virtual host using mix of IP-, name-, and port-based configuration # #server { # listen 8000; # listen somename:8080; # server_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} # HTTPS server # #server { # listen 443 ssl; # server_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_session_cache shared:SSL:1m; # ssl_session_timeout 5m; # ssl_ciphers HIGH:!aNULL:!MD5; # ssl_prefer_server_ciphers on; # location / { # root html; # index index.html index.htm; # } #} }
4.啟動nginx
cmd cd到解壓目錄, 執行 start nginx運行 nginx
然后是通過 tasklist /fi "imagename eq nginx.exe"判斷是否運行成功。
這時候就可以訪問 server中的指定的 server_name和監聽的 端口地址,比如我這邊 監聽端口是 8086,所以我的訪問地址是 http://localhost:8086/
這時候可以發現不停的刷新頁面的時候,指向的地址在 8088和8087之間的兩個網站在不停的切換。
注意:因為是使用 IIS,IIS默認端口是80,我之所以換成 8086也是為了避免這個問題。