Nginx高性能web服務器之配置文件(三)

    Nginx的配置文件是一個純文本文件,它通常位於nginx安裝目錄的conf目錄下,整個文件是以block的形式組織的,每一個block通常以一個{}來表示,block能夠分爲幾個層次,整個配置文件的main位於指令的最高層!在main層下有Events,HTTP層!而HTTP層又包含了server層,即server block,server block又可分爲location層!而且一個server block中包含多個location block。javascript

Nginx配置文件結構圖以下:php

wKiom1Up3M-z4qWNAABQEWZOKxI362.jpg


Nginx配置文件詳解:css

   nginx.conf爲Nginx的主配置文件,這裏重點介紹下nginx.confhtml

  

Nginx配置文件主要分爲4部分:前端

Main全局設置:影響其餘全部設置java

Server主機設置:配置指定的主機和端口node

Upstream負載均衡服務器設置 :設置一系列的後置服務器nginx

Location URL匹配特定位置的設置 :匹配網頁位置緩存

#user  nobody; #指定Nginx Worker進程運行用戶和用戶組,默認nobody帳號
worker_processes  1; #指定Nginx要開啓的進程數,建議和cpu數量同樣的

#定義全局錯誤日誌文件。日誌有輸出級別:
[ debug | info | notice | warn |error | crit ]

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid; #進程文件

#設定Nginx的工做模式和鏈接數上限
events {
    worker_connections  1024; #單個進程最大鏈接數(最大鏈接數=鏈接數*進程數)
     use epoll;  #參考事件模型,use [ kqueue | rtsig | epoll | /dev/poll | select| poll ]; 
     epoll模型是Linux 2.6以上版本內核中的高性能網絡I/O模型,若是跑在FreeBSD上面,就用kqueue模型

}

#設定服務器相關屬性
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;  #main爲此日誌輸出格式的名稱
    client_max_body_size 8m; #設置容許客戶端請求的最大單個文件字節數
    client_header_buffer_size 32k; #上傳文件大小限制
    large_client_header_buffers 464k;#指定客戶端請求中較大的消息頭的緩存最大數量和大小
    sendfile        on; #開啓高效文件傳輸模式
    #autoindex on;#開啓目錄表訪問,合適下載服務器,默認關閉
    #tcp_nopush     on; #防止網絡阻塞
    #tcp_nodelay on; #防止網絡阻塞
    #keepalive_timeout  0;
    keepalive_timeout  65;#長鏈接超時時間,單位是秒
    client_header_timeout;#設置客戶端請求頭讀取超時時間,超時後,服務端會關閉鏈接
    client_body_timeout;#設置客戶端請求主體讀取超時時間,超時後,客戶端沒有發送任務數據,
    Nginx會返回"Request time out(408)錯誤"
    send_timeout:#指定響應客戶端的超時時間。若超時,客戶端沒有任務會話,Nginx會關閉鏈接

    #gzip  on; #開啓gzip壓縮文件大小,實時壓縮輸出數據流
    gzip_min_length 1k; #最小壓縮文件大小
    gzip_buffers 4 16k; #壓縮緩衝區
    gzip_http_version 1.0;#壓縮版本
    gzip_comp_level 2; #壓縮等級
    gzip_types text/plainapplication/x-javascript text/css application/xml;#指定壓縮類型。
    不管是否指定,「text/html」類型老是壓縮的
    gzip_vary on; #讓前端的緩存服務器通過gzip壓縮的頁面。例如用Squid緩存通過Nginx壓縮數據
    
    
    server {
        listen       80;#指定虛擬主機的服務端口
        server_name  localhost;#指定IP地址或域名,多個域名之間用空格分開

        #charset koi8-r; #設定網頁的默認編碼格式

        #access_log  logs/host.access.log  main; #指定虛擬主機的訪問日誌存放路徑,最後的
        main用於指定訪問日誌的輸出格式

        location / {
            root   html;  #指定虛擬主機的網頁根目錄,能夠是相對路徑,也能夠是絕對路徑
            index  index.html index.htm; #設定訪問的默認首頁地址
        }
        
        
        #圖片緩存時間設置
        #全部以gif|jpg|jpeg|png|bmp|swf結尾的靜態文件都交給nginx處理
       location ~.*.(gif|jpg|jpeg|png|bmp|swf)$
         {
             expires 10d;#指定靜態文件過時時間。這裏是10天
          }
          
       #JS和CSS緩存時間設置
       location ~ .*.(js|css)?$
       { 
       expires 1h;
        }
        
        
        #error_page  404              /404.html; #返回404錯誤頁面

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

}
相關文章
相關標籤/搜索