nginx-1.8.0反向代理服务器的搭建与配置

本文主要写CentOS和Ubuntu下nginx-1.8.0作为反向代理服务器时的一些编译安装的步骤和参数,将此nginx作为网站服务器用同样不成问题,文末有一些比较好的内核参数优化,有助于提高nginx的性能,可以作为nginx性能优化的一部分。

CentOS版(仅编译安装nginx)

yum install jemalloc jemalloc-devel -y    
groupadd -r www     
useradd -r -g www www -c "Web user" -d /dev/null -s /sbin/nologin     
wget -c http://nginx.org/download/nginx-1.8.0.tar.gz     
tar zxf nginx-1.8.0.tar.gz     
cd nginx-1.8.0     
./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_spdy_module --with-http_gzip_static_module --with-ipv6 --with-http_sub_module --with-ld-opt=‘-ljemalloc‘     
make     
make install     
/usr/local/nginx/sbin/nginx -t     
/usr/local/nginx/sbin/nginx     
netstat -ano | grep \:80     
ln -s /usr/local/nginx/sbin/nginx /usr/bin/nginx

Ubuntu版(仅编译安装nginx,Ubuntu的www用户可以使用下面注释中的www-data)

apt-get install libjemalloc1 libjemalloc-dev   
apt-get install libpcre3 libpcre3-dev    
apt-get install openssl libssl1.0.0 libssl-dev    
groupadd -r www     
#www-data:x:33:    
useradd -r -g www www -c "Web user" -d /dev/null -s /sbin/nologin    
#www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin    
wget -c http://nginx.org/download/nginx-1.8.0.tar.gz    
tar zxf nginx-1.8.0.tar.gz    
cd nginx-1.8.0    
./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_spdy_module --with-http_gzip_static_module --with-ipv6 --with-http_sub_module --with-ld-opt=‘-ljemalloc‘    
make    
make install    
/usr/local/nginx/sbin/nginx -t    
ln -s /usr/local/nginx/sbin/nginx /usr/bin/nginx    
ln -s /usr/local/nginx /etc/nginx

自己用的CentOS版本(主要是安装目录、pcre、zlib、openssl)

wget http://nginx.org/download/nginx-1.8.0.tar.gz 
tar zxf nginx-1.8.0.tar.gz 
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre2-10.10.tar.gz 
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.37.tar.gz 
mkdir /usr/local/chrisdata 
tar zxf pcre2-10.10.tar.gz 
tar zxf pcre-8.37.tar.gz 
cd pcre-8.37 
yum install gcc gcc-c++ -y 
./configure --prefix=/usr/local/chrisdata/pcre 
make 
make install 
cd .. 
cd pcre2-10.10 
./configure --prefix=/usr/local/chrisdata/pcre2 
make 
make install 
cd .. 
wget http://www.openssl.org/source/openssl-1.0.2a.tar.gz 
tar zxf openssl-1.0.2a.tar.gz 
wget http://zlib.net/zlib-1.2.8.tar.gz 
tar zxf zlib-1.2.8.tar.gz 
cd zlib-1.2.8 
ls 
./configure --prefix=/usr/local/chrisdata/zlib 
make 
make install 
cd .. 
cd nginx-1.8.0 
./configure --prefix=/usr/local/chrisdata/nginx --with-http_ssl_module --with-pcre=/root/pcre-8.37 --with-zlib=/root/zlib-1.2.8 
./configure --prefix=/usr/local/chrisdata/nginx --with-http_ssl_module --with-openssl=/root/openssl-1.0.2a --with-pcre=/root/pcre-8.37 --with-zlib=/root/zlib-1.2.8 --with-http_stub_status_module
./configure --prefix=/usr/local/chrisdata/nginx --with-http_ssl_module --with-openssl=/root/openssl-1.0.2a --with-pcre=/root/pcre-8.37 --with-zlib=/root/zlib-1.2.8
make 
make install 
/usr/local/chrisdata/nginx/sbin/nginx -t 
/usr/local/chrisdata/nginx/sbin/nginx 
netstat -ano | grep \:80
ln -s /usr/local/chrisdata/nginx/sbin/nginx /usr/bin/nginx
mkdir /usr/local/nginx/conf/vhost

nginx主配置文件(lnmp一键安装包(lnmp1.2.tar.gz)、去掉注释)

user www www;
worker_processes  auto;
error_log  logs/error.log crit;
pid        logs/nginx.pid;

events {
    use epoll;
    worker_connections  51200;
    multi_accept on;
}

http {
    include       mime.types;
    default_type  application/octet-stream;
    sendfile        on;
    keepalive_timeout  65;
    tcp_nopush on;
    tcp_nodelay on;
    server_names_hash_bucket_size 128;
    client_header_buffer_size 32k;
    large_client_header_buffers 4 32k;
    client_max_body_size 50m;
    gzip on;
    gzip_min_length  1k;
    gzip_buffers     4 16k;
    gzip_http_version 1.1;
    gzip_comp_level 2;
    gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/xml+rss;
    gzip_vary on;
    gzip_proxied   expired no-cache no-store private auth;
    gzip_disable   "MSIE [1-6]\.";
    server_tokens off;
    log_format  access  ‘$remote_addr - $remote_user [$time_local] "$request" ‘
             ‘$status $body_bytes_sent "$http_referer" ‘
             ‘"$http_user_agent" $http_x_forwarded_for‘;
    server {
        listen       80;
        server_name  localhost;
        location / {
            root   html;
            index  index.html index.htm;
        }
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }

    include vhost/*.conf;
}

proxy upstream日志格式设置(请求时间、请求长度、响应时间、响应状态、响应长度等)

log_format backendtest ‘$remote_addr - $remote_user [$time_local] "$request" ‘
             ‘$status $body_bytes_sent "$http_referer" ‘
             ‘$bytes_sent ‘
             ‘$request_length $request_time ‘
             ‘$upstream_response_time $upstream_status $upstream_response_length $upstream_header_time $upstream_addr ‘
             ‘"$http_user_agent" $http_x_forwarded_for‘;

upstream配置

upstream backendtest {
    server 192.168.1.102 weight=5;
    #...
}

proxy server配置(location后面的正则建议好好研究一下,如果启用stub_status,则必须为“/”,部分web程序由于写法问题可能有相对路径问题,如css,js,需要考虑做进一步的location配置)

server {
    listen 8080;
    server_name localhost;
    #location ~ {
    location / {
        proxy_connect_timeout 300s;
        proxy_send_timeout 900;
        proxy_read_timeout 900;
        proxy_buffer_size 32k;
        proxy_buffers 4 32k;
        proxy_busy_buffers_size 64k;
        proxy_redirect off;
        proxy_hide_header Vary;
        proxy_set_header Accept-Encoding ‘‘;
        proxy_set_header Host $host;
        proxy_set_header Referer $http_referer;
        proxy_set_header Cookie $http_cookie;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_pass http://backendtest;
    }
    
    access_log /home/wwwlogs/vhost-8080-backendtest-access.log backendtest;

    location /nginx_status {
            stub_status on;
            access_log   off;
        }
}

内核参数优化

# Kernel sysctl configuration file for Red Hat Linux 
# 
# For binary values, 0 is disabled, 1 is enabled.  See sysctl(8) and 
# sysctl.conf(5) for more details. 

fs.file-max = 808127 
kernel.core_uses_pid = 1 
kernel.hung_task_timeout_secs = 0 
kernel.msgmax = 65536 
kernel.msgmnb = 65536 
kernel.sem = 250 32000 100 128 
kernel.shmall = 4294967296 
kernel.shmmax = 536870912 
kernel.shmmax = 68719476736 
kernel.shmmni = 4096 
kernel.sysrq = 0 
net.core.netdev_max_backlog = 262144 
net.core.rmem_default = 8388608 
net.core.rmem_max = 16777216 
net.core.somaxconn = 262144 
net.core.wmem_default = 8388608 
net.core.wmem_max = 16777216 
net.ipv4.conf.default.accept_source_route = 0 
net.ipv4.conf.default.rp_filter = 1 
net.ipv4.ip_forward = 0 
net.ipv4.ip_local_port_range = 1024 65535 
net.ipv4.tcp_fin_timeout = 1 
net.ipv4.tcp_keepalive_time = 1200 
net.ipv4.tcp_max_orphans = 3276800 
net.ipv4.tcp_max_syn_backlog = 262144 
net.ipv4.tcp_max_tw_buckets = 6000 
net.ipv4.tcp_mem = 94500000 915000000 927000000 
net.ipv4.tcp_rmem = 4096 87380 4194304 
net.ipv4.tcp_sack = 1 
net.ipv4.tcp_synack_retries = 5 
net.ipv4.tcp_syncookies = 1 
net.ipv4.tcp_syn_retries = 5 
net.ipv4.tcp_timestamps = 0 
net.ipv4.tcp_tw_recycle = 1 
net.ipv4.tcp_tw_reuse = 1 
net.ipv4.tcp_window_scaling = 1 
net.ipv4.tcp_wmem = 4096 16384 4194304

文件打开数优化

vim /etc/security/limits.conf

* soft nofile 65535 
* hard nofile 65535

--end--

时间: 2024-08-04 22:31:43

nginx-1.8.0反向代理服务器的搭建与配置的相关文章

CentOS中nginx负载均衡和反向代理的搭建

1: 修改centos命令行启动(减少内存占用): vim /etc/inittab id:5:initdefault: --> 修改5为3 若要界面启动使用 startx 2:安装jdk 1)解压:jdk-7u55-linux-i586.tar.gz [[email protected] jdk]# tar -zxvf jdk-7u55-linux-i586.tar.gz 2)复制:[[email protected] jdk]# cp -rf jdk1.7.0_55/ /usr/local/

Centos7 nginx 虚拟主机、反向代理服务器及负载均衡,多台主机分离php-fpm实验

一.简介 本章介绍一些架构原理基础知识, 1.1.LNMP及php-fpm 请参考https://www.cnblogs.com/zhangxingeng/p/10242902.html 1.2.透明代理.反向代理,正向代理 请参考https://www.cnblogs.com/zhangxingeng/p/10331318.html 贴一张架构图 1.3.实现反向代理配置 1 server{ 2 listen 80; 3 location /{ 4 proxy_pass http:192.16

Linux rhel7.0 pacemaker集群搭建和配置

一 集群环境介绍 一 Linux 集群发展史 高可用集群的层次结构1 消息/基础架构 corosync 2 成员关系 :监听心跳信息,并进行处理成员关系和计算成员关系的票数等信息3 资源管理 VIP 磁盘 文件系统 CRM (群集资源管理器)等,有些策略引擎(有些资源是放置在同一个节点和其依赖关系) 和资源的分配调度有关 4 资源 : 对特定资源的操作,通过一定的脚本实现pacemaker 群集资源管理器corosync 消息/基础架构 管理工具 crmsh : crm (cluster res

Nginx配置反向代理服务器

首先,在阅读<深入理解Nginx模块>后,大体了解了配置反向代理服务器一些常见的配置.如下进行说明:" l  Nginx worker进程个数 语法: worker_processes number; 默认: worker_processes 1; 在master/worker运行方式下, 定义worker进程的个数. worker进程的数量会直接影响性能. 那么, 用户配置多少个worker进程才好呢? 这实际上与业务需求有关. 每个worker进程都是单线程的进程, 它们会调用各

转:反向代理服务器的工作原理

一.什么是反向代理 反向代理(Reverse Proxy)方式是指以代理服务器来接受Internet上的连接请求,然后将请求转发给内部网络上的服务器:并将从服务器上得到的结果返回给Internet上请求连接的客户端,此时代理服务器对外就表现为一个服务器. 通常的代理服务器,只用于代理内部网络对Internet外部网络的连接请求,客户机必须指定代理服务器,并将本来要直接发送到Web服务器上的 http请求发送到代理服务器中.不支持外部网络对内部网络的连接请求,因为内部网络对外部网络是不可见的.当一

反向代理服务器(转)

反向代理及Nginx示例 1 反向代理的概念 反向代理(Reverse Proxy)方式是指以代理服务器来接受internet上的连接请求,然后将请求转发给内部网络上的服务器,并将从服务器上得到的结果返回给internet上请求连接的客户端,此时代理服务器对外就表现为一个服务器. 通常的代理服务器,只用于代理内部网络对Internet外部网络的连接请求,客户机必须指定代理服务器,并将本来要直接发送到Web服务器上的 http请求发送到代理服务器中.不支持外部网络对内部网络的连接请求,因为内部网络

反向代理服务器的工作原理

最近有打算研读nginx源代码,看到网上介绍nginx可以作为一个反向代理服务器完成负载均衡.所以搜罗了一些关于反向代理服务器的内容,整理综合. 一  概述 反向代理(Reverse Proxy)方式是指以代理服务器来接受Internet上的连接请求,然后将请求转发给内部网络上的服务器:并将从服务器上得到的结果返回给Internet上请求连接的客户端,此时代理服务器对外就表现为一个服务器. 通常的代理服务器,只用于代理内部网络对Internet的连接请求,客户机必须指定代理服务器,并将本来要直接

(转)反向代理服务器的工作原理

最近有打算研读nginx源代码,看到网上介绍nginx可以作为一个反向代理服务器完成负载均衡.所以搜罗了一些关于反向代理服务器的内容,整理综合. 一  概述 反向代理(Reverse Proxy)方式是指以代理服务器来接受Internet上的连接请求,然后将请求转发给内部网络上的服务器:并将从服务器上得到的结果返回给Internet上请求连接的客户端,此时代理服务器对外就表现为一个服务器. 通常的代理服务器,只用于代理内部网络对Internet的连接请求,客户机必须指定代理服务器,并将本来要直接

反向代理服务器的工作原理 (转)

最近有打算研读nginx源代码,看到网上介绍nginx可以作为一个反向代理服务器完成负载均衡.所以搜罗了一些关于反向代理服务器的内容,整理综合. 一  概述 反向代理(Reverse Proxy)方式是指以代理服务器来接受Internet上的连接请求,然后将请求转发给内部网络上的服务器:并将从服务器上得到的结果返回给Internet上请求连接的客户端,此时代理服务器对外就表现为一个服务器. 通常的代理服务器,只用于代理内部网络对Internet的连接请求,客户机必须指定代理服务器,并将本来要直接