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

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

nginx配置參數(shù)詳解-創(chuàng)新互聯(lián)

[root@WEBServer10414 ~]# cat /etc/nginx/nginx.conf

#user nobody;#定義nginx運(yùn)行的用戶和用戶組
user root;
worker_processes 8;#nginx進(jìn)程數(shù),建議設(shè)置為等于CPU總核心數(shù)

#error_log logs/error.log;#錯誤日志路徑
#error_log logs/error.log notice;#錯誤日志類型,如[debug | info | notice | warn | error | crit ]
#error_log logs/error.log info;錯誤日志類型

#pid       logs/nginx.pid;#進(jìn)程文件

worker_rlimit_nofile 51200;#一個nginx進(jìn)程打開的最多文件描述符數(shù)目,理論值應(yīng)該是最多打開文件數(shù)(系統(tǒng)的值ulimit)

成都創(chuàng)新互聯(lián)公司服務(wù)項(xiàng)目包括樂清網(wǎng)站建設(shè)、樂清網(wǎng)站制作、樂清網(wǎng)頁制作以及樂清網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗(yàn)、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,樂清網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到樂清省份的部分城市,未來相信會繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!

events {#工作模式與連接數(shù)上限
   use epoll;#參考事件模型[ kqueue | rtsig | epoll | /dev/poll | select | poll ];
   worker_connections 51200;#單個進(jìn)程大連接數(shù)
}

http {#設(shè)定http服務(wù)器
   include      mime.types; #文件擴(kuò)展名與文件類型映射表
   default_type application/octet-stream; #默認(rèn)文件類型

   #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       on;#開啟高效文件傳輸模式
   #tcp_nopush    on;#防止網(wǎng)絡(luò)阻塞

   #keepalive_timeout 0;
   keepalive_timeout 120;#長連接超時時間,單位是秒

   upstream backend {#upstream的負(fù)載均衡,
       ip_hash;#使用ip_hash的算法
       server 50.50.50.16:8020;#realserver的IP和端口號
       server 50.50.50.13:8020;#realserver的IP和端口號
   }

   #gzip on;#開啟gzip壓縮輸出

   server {         #虛擬主機(jī)的配置
       listen      8080;       #虛擬主機(jī)監(jiān)聽的端口號
       server_name WEBServer10414;           #虛擬主機(jī)的域名或主機(jī)名
       if ( $host ~* "\d+\.\d+\.\d+\.\d+" ) {
                                       return 400;
                               }

       charset utf-8;默認(rèn)編碼

       #access_log logs/host.access.log main;#定義本虛擬主機(jī)的訪問日志

       location / {#對“/”啟用反向代理
          # root  html;
          index index.jsp index.html index.htm; #可以識別的索引文件的類型
          proxy_set_header Host $host:8080;
          proxy_set_header X-Real-IP $remote_addr;
          proxy_set_header X-Real-Port $remote_port;
          proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;#后端的Web服務(wù)器可以通過X-Forwarded-For獲取用戶真實(shí)IP
          proxy_pass http://backend;

          proxy_buffer_size         64k;#設(shè)置代理服務(wù)器(nginx)保存用戶頭信息的緩沖區(qū)大小
          proxy_buffers             64 128k;#proxy_buffers緩沖區(qū)
          proxy_busy_buffers_size   256k;#高負(fù)荷下緩沖大小(proxy_buffers * 2)
          proxy_temp_file_write_size 256k;#設(shè)定緩存文件夾大小,將從upstream服務(wù)器傳
          }

        location /nstatus {#設(shè)定查看nginx狀態(tài)的地址
               check_status;
               access_log off;
       }

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

        upstream backend1 {
       ip_hash;
       server 50.50.50.16:8030;
       server 50.50.50.13:8030;
   }
      server {
       listen      8090;
       server_name WEBServer10414;

     charset utf-8;
       location /stsadmin-cm/ {
           index index.jsp index.htm index.html;
           proxy_pass http://backend1/stsadmin-cm/;
           proxy_redirect default;
           proxy_buffer_size         16k;
           proxy_buffers             16 128k;
           proxy_busy_buffers_size   256k;
           proxy_temp_file_write_size 256k;
       }
       error_page  500 502 503 504 /50x.html;
       location = /50x.html {
           root  html;
       }

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

}

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


文章名稱:nginx配置參數(shù)詳解-創(chuàng)新互聯(lián)
URL分享:http://weahome.cn/article/dcegjc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部