Nginx反向代理的安装和测试的基本流程

开发 前端
Nginx反向代理有不少问题需要我们解决,其中最重要的就是在安装和调试中的问题。下面我们就来详细的解决这些疑难杂症。

Nginx反向代理有不少需要我们解决的问题,其中有不少问题是基于安装上的问题,在安装完成后的相关调试也让很多人头疼不已。下面就向大家介绍有关于安装和调试的相关介绍。

由于服务器apache抗不住目前的并发.加上前端squid配置后,问题依然无法解决.而页面程序大部分是动态.无法使用fastcgi来处理.因此想使用Nginx反向代理apache.整个配置安装过程很简单.在考虑高并发的情况下,在安装前就做了些优化.目前配置能抗住3000以上并发.好像不是特别大哦?呵~~ 但足以~~ 只是还有少量499问题..期待有人跟我讨论解决.

第1部分:安装

1 建立用户及组

  1. /usr/sbin/groupadd www  
  2. /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 配置文件(这也是做负载的配置方法

  1. upstream.conf  
  2. upstream bbs.linuxtone.com {  
  3. 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错误 

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

以上就是对Nginx反向代理的详细介绍,希望大家有所收获。

【编辑推荐】

  1. nginx配置相关结构划分的技巧
  2. nginx配置文件基本应用参考手册
  3. nginx优化设置基本的TCP配置
  4. nginx配置文件优化中的比较
  5. nginx设置404相关问题代码答疑
责任编辑:张浩 来源: 博客园
相关推荐

2018-11-12 12:17:00

2019-07-09 15:10:02

Nginx反向代理负载均衡

2017-12-18 12:04:02

Nginx代理均衡

2022-07-01 07:33:24

nginx反向代理测试

2023-12-05 09:14:54

2012-12-07 10:14:48

Nginx负载均衡

2010-03-29 17:56:20

Nginx反向代理

2015-06-05 11:26:58

nginx运维

2020-10-22 08:05:46

Nginx

2023-10-17 08:36:28

Nginx代理服务器

2016-01-08 10:37:56

FreeBSD 10.Nginx反向代理

2010-06-12 18:00:16

ARP协议

2023-09-08 00:07:41

2019-06-19 15:34:39

Nginx反向代理负载均衡

2010-03-30 18:26:07

Nginx Web服务

2014-04-29 14:54:48

Nginx反向代理

2020-08-06 08:23:24

Nginx反向代理Web安全

2023-09-13 07:16:31

Ngnix代理服务器

2023-02-24 15:28:07

2017-09-06 10:14:29

Nginx TCPmail邮件
点赞
收藏

51CTO技术栈公众号