Nginx二級域名配置

Nginx二級域名配置模板javascript

域名一:www.hellosr.comcss

域名二:daxin.hellosr.comhtml

經過upstream進行負載均衡,經過access_log的配置規範化請求日誌輸出java

 

配置以下:node

#運行用戶
#user www-data;    
#啓動進程,一般設置成和cpu的數量相等
worker_processes  2;

#全局錯誤日誌及PID文件
#error_log  /home/nginx/logs/error.log;
#pid        /home/nginx/logs/nginx.pid;
#工做模式及鏈接數上限
events {
    use   epoll;             #epoll是多路複用IO(I/O Multiplexing)中的一種方式,可是僅用於linux2.6以上內核,能夠大大提升nginx的性能
    worker_connections  1024;#單個後臺worker process進程的最大併發連接數
    # multi_accept on; 
}
#設定http服務器,利用它的反向代理功能提供負載均衡支持
http {
     #設定mime類型,類型由mime.type文件定義
    include       /home/nginx/conf/mime.types;
    default_type  application/octet-stream;
    #設定日誌格式
    #access_log    /var/log/nginx/access.log;
    #sendfile 指令指定 nginx 是否調用 sendfile 函數(zero copy 方式)來輸出文件,對於普通應用,
    #必須設爲 on,若是用來進行下載等應用磁盤IO重負載應用,可設置爲 off,以平衡磁盤與網絡I/O處理速度,下降系統的uptime.
    sendfile        on;
    #tcp_nopush     on;
    #鏈接超時時間
    #keepalive_timeout  0;
    keepalive_timeout  65;
    tcp_nodelay        on;
    
    #開啓gzip壓縮
    gzip  on;
    gzip_disable "MSIE [1-6]\.(?!.*SV1)";
    #設定請求緩衝
    client_header_buffer_size    1k;
    large_client_header_buffers  4 4k;
    #日誌格式
    log_format main '$remote_addr - $remote_user [$time_local] '
                         'fwf[$http_x_forwarded_for] tip[$http_true_client_ip] '
                         '$upstream_addr $upstream_response_time $request_time '
                         '$http_host $request '
                         '"$status" $body_bytes_sent "$http_referer" '
                         '"$http_accept_language" "$http_user_agent" ';
    #include /etc/nginx/conf.d/*.conf;
    #include /etc/nginx/sites-enabled/*;
    #設定負載均衡的服務器列表
    upstream www.hellosr.com {
        #weigth參數表示權值,權值越高被分配到的概率越大
        #本機上的Squid開啓3128端口
        server 127.0.0.1:8280 weight=5;
        server 127.0.0.1:8280 weight=5;
    }
    
    upstream daxin.hellosr.com {
        #weigth參數表示權值,權值越高被分配到的概率越大
        #本機上的Squid開啓3128端口
        server 127.0.0.1:8180 weight=5;
        server 127.0.0.1:8180 weight=5;
    }

   server {
        #偵聽80端口
        listen       80;
        #定義使用www.xx.com訪問
        server_name  www.hellosr.com;
        #設定本虛擬主機的訪問日誌
        access_log  logs/www.hellosr.com.access.log;
        #默認請求
    
        
        location / {
            root   /root;      #定義服務器的默認網站根目錄位置
            index index.htm;   #定義首頁索引文件的名稱
            
            proxy_pass  http://www.hellosr.com ;#請求轉向mysvr 定義的服務器列表
            
          
          
          
            #如下是一些反向代理的配置可刪除.
            proxy_redirect off;
            #後端的Web服務器能夠經過X-Forwarded-For獲取用戶真實IP
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            client_max_body_size 10m;    #容許客戶端請求的最大單文件字節數
            client_body_buffer_size 128k;  #緩衝區代理緩衝用戶端請求的最大字節數,
            proxy_connect_timeout 90;  #nginx跟後端服務器鏈接超時時間(代理鏈接超時)
            proxy_send_timeout 90;        #後端服務器數據回傳時間(代理髮送超時)
            proxy_read_timeout 90;         #鏈接成功後,後端服務器響應時間(代理接收超時)
            proxy_buffer_size 4k;             #設置代理服務器(nginx)保存用戶頭信息的緩衝區大小
            proxy_buffers 4 32k;               #proxy_buffers緩衝區,網頁平均在32k如下的話,這樣設置
            proxy_busy_buffers_size 64k;    #高負荷下緩衝大小(proxy_buffers*2)
            proxy_temp_file_write_size 64k;  #設定緩存文件夾大小,大於這個值,將從upstream服務器傳

        }
        # 定義錯誤提示頁面
        error_page   500 502 503 504 /50x.html;  
            location = /50x.html {
            root   /root;
        }
        #靜態文件,nginx本身處理
        location ~ ^/(images|javascript|js|css|flash|media)/ {
            root /home/nginx/virtual/htdocs;
            #過時30天,靜態文件不怎麼更新,過時能夠設大一點,若是頻繁更新,則能夠設置得小一點。
            expires 30d;
        }
        
        #設定查看Nginx狀態的地址
        location /NginxStatus {
            stub_status            on;
            access_log              on;
            auth_basic              "NginxStatus";
            auth_basic_user_file  conf/htpasswd;
        }
        #禁止訪問 .htxxx 文件
        #location ~ /\.ht {
        #    deny all;
        #}
    }
    
    server {
        #偵聽80端口
        listen       80;
        #定義使用www.xx.com訪問
        server_name  daxin.hellosr.com;
        #設定本虛擬主機的訪問日誌
        access_log  logs/daxin.hellosr.com.access.log;
        #默認請求
    
        
        location / {
            root   /root;      #定義服務器的默認網站根目錄位置
            index index.htm;   #定義首頁索引文件的名稱
            
            proxy_pass  http://daxin.hellosr.com ;#請求轉向mysvr 定義的服務器列表
            
          
          
          
            #如下是一些反向代理的配置可刪除.
            proxy_redirect off;
            #後端的Web服務器能夠經過X-Forwarded-For獲取用戶真實IP
            proxy_set_header Host $host;
            proxy_set_header X-Real-IP $remote_addr;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            client_max_body_size 10m;    #容許客戶端請求的最大單文件字節數
            client_body_buffer_size 128k;  #緩衝區代理緩衝用戶端請求的最大字節數,
            proxy_connect_timeout 90;  #nginx跟後端服務器鏈接超時時間(代理鏈接超時)
            proxy_send_timeout 90;        #後端服務器數據回傳時間(代理髮送超時)
            proxy_read_timeout 90;         #鏈接成功後,後端服務器響應時間(代理接收超時)
            proxy_buffer_size 4k;             #設置代理服務器(nginx)保存用戶頭信息的緩衝區大小
            proxy_buffers 4 32k;               #proxy_buffers緩衝區,網頁平均在32k如下的話,這樣設置
            proxy_busy_buffers_size 64k;    #高負荷下緩衝大小(proxy_buffers*2)
            proxy_temp_file_write_size 64k;  #設定緩存文件夾大小,大於這個值,將從upstream服務器傳

        }
        # 定義錯誤提示頁面
        error_page   500 502 503 504 /50x.html;  
            location = /50x.html {
            root   /root;
        }
        #靜態文件,nginx本身處理
        location ~ ^/(images|javascript|js|css|flash|media)/ {
            root /home/nginx/virtual/htdocs;
            #過時30天,靜態文件不怎麼更新,過時能夠設大一點,若是頻繁更新,則能夠設置得小一點。
            expires 30d;
        }
        
        #設定查看Nginx狀態的地址
        location /NginxStatus {
            stub_status            on;
            access_log              on;
            auth_basic              "NginxStatus";
            auth_basic_user_file  conf/htpasswd;
        }
        #禁止訪問 .htxxx 文件
        #location ~ /\.ht {
        #    deny all;
        #}
    }
    
    
    
}
View Code
相關文章
相關標籤/搜索