91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Nginx中怎么實現反向代理

發布時間:2021-07-19 15:19:52 來源:億速云 閱讀:153 作者:Leah 欄目:web開發

這篇文章給大家介紹Nginx中怎么實現反向代理,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1 建立用戶及組

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

2 安裝pcre 讓Nginx反向代理支持rewrite 方便以后所需

  1. wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-7.8.tar.gz  

  2. tar zxvf pcre-7.8.tar.gz  

  3. cd pcre-7.8/  

  4. ./configure  

  5. make && make install 


3 安裝Nginx反向代理

  1. wget http://sysoev.ru/  nginx  /nginx-0.7.58.tar.gz  

  2. tar zxvf nginx-0.7.58.tar.gz  

  3. cd nginx-0.7.58/  

  4. ./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
    =opteron 

  5. make && make install 


注意上文中的--with-cc-opt='-O2' --with-cpu-opt=opteron 這是編譯器優化,目前最常用的是-02 而不是3.后面對應CPU的型號。

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

1 Nginx.conf 配置文件:

  1. user www www;  

  2. worker_processes 4;  

  3. # [ debug | info | notice | warn | error | crit ]  

  4. error_log /usr/local/webserver/nginx/logs/nginx_error.log crit;  

  5. pid /usr/local/webserver/nginx/nginx.pid;  

  6. #Specifies the value for maximum file descriptors that 
    can be opened by this process.  

  7. worker_rlimit_nofile 51200;  

  8. events  

  9. {  

  10. use epoll;  

  11. worker_connections 51200;  

  12. }  

  13. http  

  14. {  

  15. include mime.types;  

  16. default_type application/octet-stream;  

  17. source_charset GB2312;  

  18. server_names_hash_bucket_size 256;  

  19. client_header_buffer_size 256k;  

  20. large_client_header_buffers 4 256k;  

  21. #size limits  

  22. client_max_body_size 50m;  

  23. client_body_buffer_size 256k;  

  24. client_header_timeout 3m;  

  25. client_body_timeout 3m;  

  26. send_timeout 3m;  

  27. #參數都有所調整.目的是解決代理過程中出現的一些502 499錯誤   

  28. sendfile on;  

  29. tcp_nopush on;  

  30. keepalive_timeout 120; #參數加大,以解決做代理時502錯誤  

  31. tcp_nodelay on;  

  32. include vhosts/upstream.conf;  

  33. include vhosts/bbs.linuxtone.conf;   

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

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

3 站點配置文件

  1. bbs.linuxtone.conf  

  2. server  

  3. {  

  4. listen 80;  

  5. server_name bbs.linuxtone.conf;  

  6. charset GB2312;  

  7. index index.html index.htm;  

  8. root /date/wwwroot/linuxtone/;  

  9. location ~ ^/NginxStatus/ {  

  10. stub_status on;  

  11. access_log off;  

  12. }  

  13. location / {  

  14. root /date/wwwroot/linuxtone/;  

  15. proxy_redirect off ;  

  16. proxy_set_header Host $host;  

  17. proxy_set_header X-Real-IP $remote_addr;  

  18. proxy_set_header REMOTE-HOST $remote_addr;  

  19. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;  

  20. client_max_body_size 50m;  

  21. client_body_buffer_size 256k;  

  22. proxy_connect_timeout 30;  

  23. proxy_send_timeout 30;  

  24. proxy_read_timeout 60;  

  25. proxy_buffer_size 256k;  

  26. proxy_buffers 4 256k;  

  27. proxy_busy_buffers_size 256k;  

  28. proxy_temp_file_write_size 256k;  

  29. proxy_next_upstream error timeout invalid_header http_500 
    http_503 http_404;  

  30. proxy_max_temp_file_size 128m;  

  31. proxy_pass http://bbs.linuxtone.com;  


參數都有所調整.目的是解決代理過程中出現的一些502 499錯誤

#Add expires header for static content  location ~* \.(jpg|jpeg|gif|png|swf)$ {  if (-f $request_filename) {  root /date/wwwroot/linuxtone/;  expires 1d;  break;  }  }  log_format access '$remote_addr - $remote_user [$time_local] "$request" '  '$status $body_bytes_sent "$http_referer" '  '"$http_user_agent" $http_x_forwarded_for';  access_log /exp/nginxlogs/bbs.linuxtone_access.log access;  }

關于Nginx中怎么實現反向代理就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

溧阳市| 滦南县| 万州区| 星座| 桓仁| 五常市| 田林县| 六盘水市| 综艺| 边坝县| 紫云| 离岛区| 剑河县| 华坪县| 什邡市| 精河县| 东辽县| 枣强县| 错那县| 富锦市| 乌审旗| 濉溪县| 沽源县| 贵定县| 渝中区| 年辖:市辖区| 永平县| 长顺县| 呼伦贝尔市| 桓台县| 泊头市| 绥阳县| 大城县| 汉源县| 曲阜市| 甘谷县| 安丘市| 安岳县| 中西区| 和林格尔县| 四川省|