真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

nginx參數(shù)的示例分析-創(chuàng)新互聯(lián)

這篇文章主要為大家展示了“nginx參數(shù)的示例分析”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學習一下“nginx參數(shù)的示例分析”這篇文章吧。

作為一家“創(chuàng)意+整合+營銷”的成都網(wǎng)站建設(shè)機構(gòu),我們在業(yè)內(nèi)良好的客戶口碑。創(chuàng)新互聯(lián)提供從前期的網(wǎng)站品牌分析策劃、網(wǎng)站設(shè)計、成都做網(wǎng)站、成都網(wǎng)站制作、創(chuàng)意表現(xiàn)、網(wǎng)頁制作、系統(tǒng)開發(fā)以及后續(xù)網(wǎng)站營銷運營等一系列服務(wù),幫助企業(yè)打造創(chuàng)新的互聯(lián)網(wǎng)品牌經(jīng)營模式與有效的網(wǎng)絡(luò)營銷方法,創(chuàng)造更大的價值。

示例:

#開啟進程數(shù) <=CPU數(shù) 
worker_processes 1; 
 
#錯誤日志保存位置 
#error_log logs/error.log; 
#error_log logs/error.log notice; 
#error_log logs/error.log info; 
 
#進程號保存文件 
#pid logs/nginx.pid; 
 
#等待事件 
events { 
  #每個進程大連接數(shù)(大連接=連接數(shù)x進程數(shù))  
  worker_connections 1024; 
}

http { 
  #文件擴展名與文件類型映射表 
  include mime.types;
   
  #默認文件類型 
  default_type application/octet-stream; 
   
  #日志文件輸出格式 這個位置相于全局設(shè)置 
  #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; 
   
  #打開發(fā)送文件 
  sendfile on; 
  #tcp_nopush on; 
   
  #連接超時時間 
  #keepalive_timeout 0; 
  keepalive_timeout 65; 
   
  #打開gzip壓縮 
  #gzip on; 
   
  #設(shè)定請求緩沖 
  client_header_buffer_size 1k; 
  large_client_header_buffers 4 4k; 
   
  #設(shè)定負載均衡的服務(wù)器列表 
  upstream tomcat-servers {
    #weigth參數(shù)表示權(quán)值,權(quán)值越高被分配到的幾率越大 
    #max_fails 當有#max_fails個請求失敗,就表示后端的服務(wù)器不可用,默認為1,將其設(shè)置為0可以關(guān)閉檢查 
    #fail_timeout 在以后的#fail_timeout時間內(nèi)nginx不會再把請求發(fā)往已檢查出標記為不可用的服務(wù)器 
    #這里指定多個源服務(wù)器,ip:端口,80端口的話可寫可不寫 
    server 127.0.0.1:8080 weight=5 max_fails=2 fail_timeout=600s; 
    #server 127.0.0.2:8080 weight=3 max_fails=2 fail_timeout=600s;  
  } 
   
  #第一個虛擬主機 
  server { 
  #監(jiān)聽IP端口 
  listen 80; 
   
  #主機名 
  server_name localhost; 
   
  #設(shè)置字符集 
  #charset koi8-r; 
   
  #本虛擬server的訪問日志 相當于局部變量 
  #access_log logs/host.access.log main;  
   
  #對本server"/"啟用負載均衡
  location / {  
    #root /root; #定義服務(wù)器的默認網(wǎng)站根目錄位置 
    #index index.php index.html index.htm; #定義首頁索引文件的名稱 
    proxy_pass http://tomcat-servers; #請求轉(zhuǎn)向tomcat-servers定義的服務(wù)器列表 
     
    #以下是一些反向代理的配置可刪除. 
    # proxy_redirect off;  
    # 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; #允許客戶端請求的大單文件字節(jié)數(shù)  
    # client_body_buffer_size 128k; #緩沖區(qū)代理緩沖用戶端請求的大字節(jié)數(shù),  
    # proxy_connect_timeout 90; #nginx跟后端服務(wù)器連接超時時間(代理連接超時)  
    # proxy_send_timeout 90; #后端服務(wù)器數(shù)據(jù)回傳時間(代理發(fā)送超時)  
    # proxy_read_timeout 90; #連接成功后,后端服務(wù)器響應(yīng)時間(代理接收超時)  
    # proxy_buffer_size 4k; #設(shè)置代理服務(wù)器(nginx)保存用戶頭信息的緩沖區(qū)大小  
    # proxy_buffers 4 32k; #proxy_buffers緩沖區(qū),網(wǎng)頁平均在32k以下的話,這樣設(shè)置  
    # proxy_busy_buffers_size 64k; #高負荷下緩沖大?。╬roxy_buffers*2)  
    # proxy_temp_file_write_size 64k; #設(shè)定緩存文件夾大小,大于這個值,將從upstream服務(wù)器傳 
  }
  location /upload {  
    alias e:/upload;  
  } 
  #設(shè)定查看Nginx狀態(tài)的地址  
  location /NginxStatus {  
    stub_status on;  
    access_log off;  
    #allow 192.168.0.3; 
    #deny all; 
    #auth_basic "NginxStatus";  
    #auth_basic_user_file conf/htpasswd;  
  }
   
  #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 { 
    #多監(jiān)聽  
    # listen 8000; 
    #主機名 
    # listen somename:8080; 
    # server_name somename alias another.alias; 
     
    # location / { 
      #WEB文件路徑 
      # root html; 
      #默認首頁 
      # index index.html index.htm; 
    # } 
  #} 
   
   
  # HTTPS server HTTPS SSL加密服務(wù)器 
  # 
  #server { 
    # listen 443; 
    # server_name localhost; 
     
    # ssl on; 
    # ssl_certificate cert.pem; 
    # ssl_certificate_key cert.key; 
     
    # ssl_session_timeout 5m; 
     
    # ssl_protocols SSLv2 SSLv3 TLSv1; 
    # ssl_ciphers HIGH:!aNULL:!MD5; 
    # ssl_prefer_server_ciphers on; 
     
    # location / { 
      # root html; 
      # index index.html index.htm; 
    # } 
  #}  
}

以上是“nginx參數(shù)的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計公司行業(yè)資訊頻道!

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


網(wǎng)頁題目:nginx參數(shù)的示例分析-創(chuàng)新互聯(lián)
標題路徑:http://weahome.cn/article/idhhj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部