国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 網站 > Nginx > 正文

詳解nginx反向代理配置及優化

2024-08-30 12:21:52
字體:
來源:轉載
供稿:網友
本篇文章主要介紹了詳解nginx反向代理配置及優化,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

前言:

由于服務器apache抗不住目前的并發.加上前端squid配置后,問題依然無法解決.而頁面程序大部分是動態.無法使用fastcgi來處理.因此想使用nginx做為反向代理apache.整個配置安裝過程很簡單.在考慮高并發的情況下,在安裝前就做了些優化.目前配置能抗住3000以上并發.好像不是特別大哦?呵~~ 但足以~~ 只是還有少量499問題..期待有人跟我討論解決

第1部分:安裝

1 建立用戶及組

/usr/sbin/groupadd www/usr/sbin/useradd -g www www

2 安裝pcre 讓nginx支持rewrite 方便以后所需

wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.8.tar.gztar zxvf pcre-7.8.tar.gzcd pcre-7.8/./configuremake && make install

3 安裝nginx

wget http://sysoev.ru/nginx/nginx-0.7.58.tar.gztar zxvf nginx-0.7.58.tar.gzcd nginx-0.7.58/./configure --user=www --group=www --prefix=/usr/local/webserver/nginx --with-http_stub_status_module --with-http_ssl_module --with-cc-opt='-O2' --with-cpu-opt=opteronmake && make install

#注意上文中的--with-cc-opt='-O2' --with-cpu-opt=opteron 這是編譯器優化,目前最常用的是-02 而不是3.后面對應CPU的型號,可參照:http://wiki.gentoo.tw/index.php/HOWTO_CFLAG

第2部分:配置及優化配置文件

1 nginx.conf 配置文件:

user  www www;worker_processes 4;# [ debug | info | notice | warn | error | crit ]error_log  /usr/local/webserver/nginx/logs/nginx_error.log  crit;pid        /usr/local/webserver/nginx/nginx.pid;#Specifies the value for maximum file descriptors that can be opened by this process.worker_rlimit_nofile 51200;events{     use epoll;     worker_connections 51200;}http{     include       mime.types;     default_type  application/octet-stream;     source_charset GB2312;     server_names_hash_bucket_size 256;     client_header_buffer_size 256k;     large_client_header_buffers 4 256k;     #size limits     client_max_body_size       50m;     client_body_buffer_size    256k;     client_header_timeout   3m;     client_body_timeout 3m;     send_timeout       3m;#參數都有所調整.目的是解決代理過程中出現的一些502 499錯誤        sendfile on;     tcp_nopush     on;     keepalive_timeout 120; #參數加大,以解決做代理時502錯誤     tcp_nodelay on;         include          vhosts/upstream.conf;     include          vhosts/bbs.linuxtone.conf; }

2 upstream.conf 配置文件(這也是做負載的配置方法)

upstream.conf      upstream bbs.linuxtone.com {         server 192.168.1.4:8099;       }

3 站點配置文件

bbs.linuxtone.confserver   {      listen       80;      server_name  bbs.linuxtone.conf;      charset GB2312;      index index.html index.htm;      root  /date/wwwroot/linuxtone/;        location ~ ^/NginxStatus/ {            stub_status on;            access_log off;         }     location / {       root  /date/wwwroot/linuxtone/;       proxy_redirect off ;       proxy_set_header Host $host;       proxy_set_header X-Real-IP $remote_addr;       proxy_set_header REMOTE-HOST $remote_addr;       proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;       client_max_body_size 50m;       client_body_buffer_size 256k;       proxy_connect_timeout 30;       proxy_send_timeout 30;       proxy_read_timeout 60;       proxy_buffer_size 256k;       proxy_buffers 4 256k;       proxy_busy_buffers_size 256k;       proxy_temp_file_write_size 256k;       proxy_next_upstream error timeout invalid_header http_500 http_503 http_404;       proxy_max_temp_file_size 128m;       proxy_pass  http://bbs.linuxtone.com;      }
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 连山| 乾安县| 哈巴河县| 米易县| 定南县| 邵武市| 乌拉特中旗| 峨山| 平罗县| 叙永县| 冀州市| 岑巩县| 岚皋县| 青阳县| 池州市| 营口市| 海阳市| 永新县| 高青县| 澜沧| 思南县| 北碚区| 仙桃市| 武乡县| 体育| 汉寿县| 平定县| 桂阳县| 嘉定区| 县级市| 邹城市| 平阴县| 陈巴尔虎旗| 平原县| 阜南县| 洪湖市| 乾安县| 锡林郭勒盟| 虹口区| 岳阳县| 枣庄市|