1. 程式人生 > >nginx 中文詳解

nginx 中文詳解

nginx 中文詳解

#定義Nginx執行的使用者和使用者組
#user www www;

#指定nginx程序數
#規則設定
#(1)cpu有多少個核,就有幾位數,1代表核心開啟,0代表核心關閉
#(2)worker_processes最多開啟8個,8個以上效能就不會再提升了,而且穩定性會變的更低,因此8個程序夠用了
worker_processes  1;

#配置Nginx多核CPU,worker_cpu_affinity使用方法和範例

#1. 2核CPU,開啟2個程序


#worker_processes     2;
#worker_cpu_affinity 01 10;

#01表示啟用第一個CPU核心,10表示啟用第二個CPU核心
#worker_cpu_affinity 01 10;表示開啟兩個程序,第一個程序對應著第一個CPU核心,第二個程序對應著第二#個CPU核心。
#2. 2核CPU,開啟4個程序

#worker_processes     4;
#worker_cpu_affinity 01 10 01 10;

#開啟了四個程序,它們分別對應著開啟2個CPU核心
#3. 4核CPU,開戶4個程序

#worker_processes     4;
#worker_cpu_affinity 0001 0010 0100 1000;

#0001表示啟用第一個CPU核心,0010表示啟用第二個CPU核心,依此類推
#4. 4核CPU,開啟2個程序

#worker_processes     2;
#worker_cpu_affinity 0101 1010;

#0101表示開啟第一個和第三個核心,1010表示開啟第二個和第四個核心
#2個程序對應著四個核心
#worker_cpu_affinity配置是寫在/etc/nginx/nginx.conf裡面的。
#2核是 01,四核是0001,8核是00000001,有多少個核,就有幾位數,1表示該核心開啟,0表示該核心關#閉。

#5. 8核CPU,開戶8個程序

#worker_processes     8;
#worker_cpu_affinity 00000001 00000010 00000100 00001000 00010000 00100000 01000000 10000000;

#0001表示啟用第一個CPU核心,0010表示啟用第二個CPU核心,依此類推


#全域性錯誤日誌及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 {

    #設定mime型別,型別由mime.type檔案定義
    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.1.116  down;
      #server 192.168.1.116  backup;
      server 192.168.1.121  weight=1;
      server 192.168.1.122  weight=2;
     #nginx的upstream目前支援4種方式的分配
        #1、輪詢(預設)
        #每個請求按時間順序逐一分配到不同的後端伺服器,如果後端伺服器down掉,能自動剔除。
        #2、weight
        #指定輪詢機率,weight和訪問比率成正比,用於後端伺服器效能不均的情況。
        #例如:
        #upstream bakend {
        #    server 192.168.0.14 weight=10;
        #    server 192.168.0.15 weight=10;
        #}
        #2、ip_hash
        #每個請求按訪問ip的hash結果分配,這樣每個訪客固定訪問一個後端伺服器,可以解決session的問題。
        #例如:
        #upstream bakend {
        #    ip_hash;
        #    server 192.168.0.14:88;
        #    server 192.168.0.15:80;
        #}
        #3、fair(第三方)
        #按後端伺服器的響應時間來分配請求,響應時間短的優先分配。
        #upstream backend {
        #    server server1;
        #    server server2;
        #    fair;
        #}
        #4、url_hash(第三方)
        #按訪問url的hash結果來分配請求,使每個url定向到同一個後端伺服器,後端伺服器為快取時比較有效。
        #例:在upstream中加入hash語句,server語句中不能寫入weight等其他的引數,hash_method是使用的hash演算法
        #upstream backend {
        #    server squid1:3128;
        #    server squid2:3128;
        #    hash $request_uri;
        #    hash_method crc32;
        #}

        #tips:
        #upstream bakend{#定義負載均衡裝置的Ip及裝置狀態}{
        #    ip_hash;
        #    server 127.0.0.1:9090 down;
        #    server 127.0.0.1:8080 weight=2;
        #    server 127.0.0.1:6060;
        #    server 127.0.0.1:7070 backup;
        #}
        #在需要使用負載均衡的server中增加 proxy_pass http://bakend/;

        #每個裝置的狀態設定為:
        #1.down表示單前的server暫時不參與負載
        #2.weight為weight越大,負載的權重就越大。
        #3.max_fails:允許請求失敗的次數預設為1.當超過最大次數時,
        				返回proxy_next_upstream模組定義的錯誤
        
        #4.fail_timeout:max_fails次失敗後,暫停的時間。
        #5.backup: 其它所有的非backup機器down或者忙的時候,請求backup機器。
        			 所以這臺機器壓力會最輕。

        #nginx支援同時設定多組的負載均衡,用來給不用的server來使用。
        #client_body_in_file_only設定為On 可以講client post過來的資料記錄到檔案中用來做debug
        #client_body_temp_path設定記錄檔案的目錄 可以設定最多3層目錄
        #location對URL進行匹配.可以進行重定向或者進行新的代理 負載均衡
    }

    #配置代理伺服器的地址,即Nginx安裝的伺服器地址、監聽埠、預設地址
    server {
        #1.偵聽80埠 
        listen       80;

        #對於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;
    #    }
    #}

}
 server {
        keepalive_requests 120; #單連線請求上限次數。
        listen       4545;   #監聽埠
        server_name  127.0.0.1;   #監聽地址       
        location  ~*^.+$ {       #請求的url過濾,正則匹配,~為區分大小寫,~*為不區分大小寫。
           #root path;  #根目錄
           #index vv.txt;  #設定預設頁
           proxy_pass  http://mysvr;  #請求轉向mysvr 定義的伺服器列表
           deny 127.0.0.1;  #拒絕的ip
           allow 172.18.5.54; #允許的ip           
        }