Nginx是一款开源代码的高性能HTTP做事器和反向代理做事器,同时支持IMAP/POP3/SMTP代理做事

1.Nginx事情事理

Nginx由内核和模块组成,完成事情是通过查找配置文件将客户端要求映射到一个location block(location是用于URL匹配的命令),location配置的命令会启动不同模块完成事情。

nginx访问jsp文件直接下载了Nginx简介及设置装备摆设文件详解 Webpack

Nginx模块分为核心模块,根本模块和第三方模块。

核心模块:HTTP模块、EVENT模块(事宜)、MAIL模块。

根本模块:HTTP Access模块、HTTP FastCGI模块、HTTP Proxy模块、HTTP Rewrite模块。

第三方模块:HTTP Upstream Request Hash模块、Notice模块、HTTP Access Key模块。

2.性能上风

web做事器,处理静态文件、索引文件以及自动索引效率高。

代理做事器,快速高效反向代理,提升网站性能。

负载均衡器,内部支持Rails和PHP,也可支持HTTP代理做事器,对外进行做事。
同时支持大略容错和利用算法进行负载均衡。

性能方面,Nginx专门为性能设计,实现看重效率。
采取Poll模型,可以支持更多的并发连接,并在大并发时占用很低内存。

稳定性方面,采取分阶段资源分配技能,使CPU资源占用率低。

高可用性方面,支持热备,启动迅速。

二 Nginx编译安装,配置文件详解

1.Nginx安装

#安装支配nginx所用到的安装工具和干系库#默认安装的http_rewrite_module(利用正则对要求重写)需pcre库#默认安装的httP_gzip_module(Gzip压缩)需zlib库#安装http_ssl_module(HTTPS/SLL)需openssl库yum -y install gcc pcre pcre-devel zlib zlib-devel openssl openssl-devel#下载nginx源码包,并解压wget http://nginx.org/download/nginx-1.10.3.tar.gztar -zxvf nginx-1.10.3.tar.gzcd nginx-1.10.3#设置参数 参数详细参考《Nginx编译参数》./configure \--prefix=/usr/local/nginx \--with-http_ssl_module #编译并安装 make && make install

2.Nginx配置文件(/usr/local/nginx/conf/nginx.conf)

配置文件紧张由四部分组成:main(全区设置),server(主机配置),upstream(负载均衡做事器设置),和location(URL匹配特定位置设置)。

1)全局变量

#Nginx的worker进程运行用户以及用户组#user nobody nobody;#Nginx开启的进程数worker_processes 1;#worker_processes auto;#以下参数指定了哪个cpu分配给哪个进程,一样平常来说不用分外指定。
如果一定要设的话,用0和1指定分配办法.#这样设便是给1-4个进程分配单独的核来运行,涌现第5个进程是便是随机分配了。
eg:#worker_processes 4 #4核CPU #worker_cpu_affinity 0001 0010 0100 1000#定义全局缺点日志定义类型,[debug|info|notice|warn|crit]#error_log logs/error.log info;#指定进程ID存储文件位置#pid logs/nginx.pid;#一个nginx进程打开的最多文件描述符数目,理论值该当是最多打开文件数(ulimit -n)与nginx进程数相除,但是nginx分配要求并不是那么均匀,以是最好与ulimit -n的值保持同等。
#vim /etc/security/limits.conf# soft nproc 65535# hard nproc 65535# soft nofile 65535# hard nofile 65535worker_rlimit_nofile 65535;

2)事宜配置

events { #use [ kqueue | rtsig | epoll | /dev/poll | select | poll ]; epoll模型是Linux 2.6以上版本内核中的高性能网络I/O模型,如果跑在FreeBSD上面,就用kqueue模型。
use epoll; #每个进程可以处理的最大连接数,理论上每台nginx做事器的最大连接数为worker_processesworker_connections。
理论值:worker_rlimit_nofile/worker_processes #把稳:最大客户数也由系统的可用socket连接数限定(~ 64K),以是设置不切实际的高没什么好处 worker_connections 65535; #worker事情办法:串行(一定程度降落负载,但做事器吞吐量大时,关闭利用并行办法) #multi_accept on; }

3)http参数

#文件扩展名与文件类型映射表 include mime.types; #默认文件类型 default_type application/octet-stream;#日志干系定义 #log_format main '$remote_addr - $remote_user [$time_local] \"大众$request\"大众 ' # '$status $body_bytes_sent \"大众$http_referer\"大众 ' # '\公众$http_user_agent\"大众 \公众$http_x_forwarded_for\"大众'; #定义日志的格式。
后面定义要输出的内容。
#1.$remote_addr 与$http_x_forwarded_for 用以记录客户真个ip地址; #2.$remote_user :用来记录客户端用户名称; #3.$time_local :用来记录访问韶光与时区; #4.$request :用来记录要求的url与http协议; #5.$status :用来记录要求状态; #6.$body_bytes_sent :记录发送给客户端文件主体内容大小; #7.$http_referer :用来记录从那个页面链接访问过来的; #8.$http_user_agent :记录客户端浏览器的干系信息 #连接日志的路径,指定的日志格式放在末了。
#access_log logs/access.log main; #只记录更为严重的缺点日志,减少IO压力 error_log logs/error.log crit; #关闭日志 #access_log off; #默认编码 #charset utf-8; #做事器名字的hash表大小 server_names_hash_bucket_size 128; #客户端要求单个文件的最大字节数 client_max_body_size 8m; #指定来自客户端要求头的hearerbuffer大小 client_header_buffer_size 32k; #指定客户端要求中较大的头的缓存最大数量和大小。
large_client_header_buffers 4 64k; #开启高效传输模式。
sendfile on; #防止网络壅塞 tcp_nopush on; tcp_nodelay on; #客户端连接超时时间,单位是秒 keepalive_timeout 60; #客户端要求头读取超时时间 client_header_timeout 10; #设置客户端要求主体读取超时时间 client_body_timeout 10; #相应客户端超时时间 send_timeout 10;#FastCGI干系参数是为了改进网站的性能:减少资源占用,提高访问速率。
fastcgi_connect_timeout 300; fastcgi_send_timeout 300; fastcgi_read_timeout 300; fastcgi_buffer_size 64k; fastcgi_buffers 4 64k; fastcgi_busy_buffers_size 128k; fastcgi_temp_file_write_size 128k;#gzip模块设置 #开启gzip压缩输出 gzip on; #最小压缩文件大小 gzip_min_length 1k; #压缩缓冲区 gzip_buffers 4 16k; #压缩版本(默认1.1,前端如果是squid2.5请利用1.0) gzip_http_version 1.0; #压缩等级 1-9 等级越高,压缩效果越好,节约宽带,但CPU花费大 gzip_comp_level 2; #压缩类型,默认就已经包含text/html,以是下面就不用再写了,写上去也不会有问题,但是会有一个warn。
gzip_types text/plain application/x-javascript text/css application/xml; #前端缓存做事器缓存经由压缩的页面 gzip_vary on;

4)虚拟主机基本设置

#虚拟主机定义 server { #监听端口 listen 80; #访问域名 server_name localhost; #编码格式,若网页格式与此不同,将被自动转码 #charset koi8-r; #虚拟主机访问日志定义 #access_log logs/host.access.log main; #对URL进行匹配 location / { #访问路径,可相对也可绝对路径 root html; #首页文件。
以下按顺序匹配 index index.html index.htm; }#缺点信息返回页面 #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; }#访问URL以.php结尾则自动转交给127.0.0.1 # proxy the PHP scripts to Apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #}#php脚本要求全部转发给FastCGI处理 # 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; #}#禁止访问.ht页面 (需ngx_http_access_module模块) # deny access to .htaccess files, if Apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} }#HTTPS虚拟主机定义 # 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; # } #}

5)Nignx状态监控

#Nginx运行状态,StubStatus模块获取Nginx自启动的事情状态(编译时要开启对应功能) #location /NginxStatus { # #启用StubStatus的事情访问状态 # stub_status on; # #指定StubStaus模块的访问日志文件 # access_log logs/Nginxstatus.log; # #Nginx认证机制(需Apache的htpasswd命令天生) # #auth_basic \"大众NginxStatus\"大众; # #用来认证的密码文件 # #auth_basic_user_file ../htpasswd; #}访问:http://IP/NginxStatus(测试就不加密码验证干系)

6)反向代理

#以下配置追加在HTTP的全局变量中#nginx跟后端做事器连接超时时间(代理连接超时)proxy_connect_timeout 5;#后端做事器数据回传韶光(代理发送超时)proxy_send_timeout 5;#连接成功后,后端做事器相应韶光(代理吸收超时)proxy_read_timeout 60;#设置代理做事器(nginx)保存用户头信息的缓冲区大小proxy_buffer_size 16k;#proxy_buffers缓冲区,网页均匀在32k以下的话,这样设置proxy_buffers 4 32k;#高负荷下缓冲大小(proxy_buffers2)proxy_busy_buffers_size 64k;#设定缓存文件夹大小,大于这个值,将从upstream做事器传proxy_temp_file_write_size 64k;#反向代理缓存目录proxy_cache_path /data/proxy/cache levels=1:2 keys_zone=cache_one:500m inactive=1d max_size=1g;#levels=1:2 设置目录深度,第一层目录是1个字符,第2层是2个字符#keys_zone:设置web缓存名称和内存缓存空间大小#inactive:自动打消缓存文件韶光。
#max_size:硬盘空间最大可利用值。
#指定临时缓存文件的存储路径(路径需和上面路径在同一分区)proxy_temp_path /data/proxy/temp#做事配置server { #侦听的80端口 listen 80; server_name localhost; location / { #反向代理缓存设置命令(proxy_cache zone|off,默认关闭以是要设置) proxy_cache cache_one; #对不同的状态码缓存不同韶光 proxy_cache_valid 200 304 12h; #设置以什么样参数获取缓存文件名 proxy_cache_key $host$uri$is_args$args; #后7真个Web做事器可以通过X-Forwarded-For获取用户真实IP proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; #代理设置 proxy_pass http://IP; #文件过期韶光掌握 expires 1d; } #配置手动清楚缓存(实现此功能需第三方模块 ngx_cache_purge) #http://www.123.com/2017/0316/17.html访问 #http://www.123.com/purge/2017/0316/17.html清楚URL缓存 location ~ /purge(/.) { allow 127.0.0.1; deny all; proxy_cache_purge cache_one $host$1$is_args$args; } #设置扩展名以.jsp、.php、.jspx结尾的动态运用程序不做缓存 location ~.\.(jsp|php|jspx)?$ { proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_pass http://http://IP; }

7)负载均衡

#负载均衡做事器池upstream my_server_pool { #调度算法 #1.轮循(默认)(weight轮循权值) #2.ip_hash:根据每个要求访问IP的hash结果分配。
(会话保持) #3.fair:根据后端做事器相应韶光最短要求。
(upstream_fair模块) #4.url_hash:根据访问的url的hash结果分配。
(需hash软件包) #参数: #down:表示不参与负载均衡 #backup:备份做事器 #max_fails:许可最大要求缺点次数 #fail_timeout:要求失落败后停息做事韶光。
server 192.168.1.109:80 weight=1 max_fails=2 fail_timeout=30; server 192.168.1.108:80 weight=2 max_fails=2 fail_timeout=30;}#负载均衡调用server { ... location / { proxy_pass http://my_server_pool; }}

8)URL重写

#根据不同的浏览器URL重写if($http_user_agent ~ Firefox){rewrite ^(.)$ /firefox/$1 break; }if($http_user_agent ~ MSIE){rewrite ^(.)$ /msie/$1 break; }#实现域名跳转location / { rewrite ^/(.)$ https://web8.example.com$1 permanent;}

9)IP限定

#限定IP访问location / { deny 192.168.0.2; allow 192.168.0.0/24; allow 192.168.1.1; deny all;}

10)Nginx干系命令

#启动nginxnginx #关闭nginxnginx -s stop#平滑重启kill -HUP `cat /usr/local/nginx/logs/nginx.pid`

11)Nginx启动脚本

#!/bin/bash#chkconfig: 2345 80 90#description:auto_runPATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/binexport PATH# Check if user is rootif [ $(id -u) != \"大众0\"大众 ]; then echo \公众Error: You must be root to run this script!\n\"大众 exit 1fiNGINXDAEMON=/usr/local/nginx/sbin/nginxPIDFILE=/usr/local/nginx/logs/nginx.pidfunction_start(){ echo -en \"大众\033[32;49;1mStarting nginx......\n\"大众 echo -en \"大众\033[39;49;0m\"大众 if [ -f $PIDFILE ]; then printf \"大众Nginx is runing!\n\"大众 exit 1 else $NGINXDAEMON printf \"大众Nginx is the successful start!\n\公众 fi}function_stop(){ echo -en \公众\033[32;49;1mStoping nginx......\n\"大众 echo -en \"大众\033[39;49;0m\"大众 if [ -f $PIDFILE ]; then kill `cat $PIDFILE` printf \公众Nginx program is stoped\n\"大众 else printf \"大众Nginx program is not runing!\n\公众 fi}function_reload(){ echo -en \"大众\033[32;49;1mReload nginx......\n\"大众 echo -en \公众\033[39;49;0m\"大众 function_stop function_start}function_restart(){ echo -en \"大众\033[32;49;1mRestart nginx......\n\公众 echo -en \"大众\033[39;49;0m\"大众 printf \"大众Reload Nginx configure...\n\公众 $NGINXDAEMON -t kill -HUP `cat $PIDFILE` printf \"大众Nginx program is reloding!\n\公众}function_kill(){ killall nginx}function_status(){ if ! ps -ef|grep -v grep|grep 'nginx:' > /dev/null 2>&1 then printf \"大众Nginx is down!!!\n\"大众 else printf \"大众Nginx is running now!\n\"大众 fi}if [ \"大众$1\公众 = \公众start\"大众 ]; then function_startelif [ \"大众$1\公众 = \"大众stop\"大众 ]; then function_stopelif [ \"大众$1\公众 = \"大众reload\公众 ]; then function_reloadelif [ \"大众$1\"大众 = \"大众restart\"大众 ]; then function_restartelif [ \"大众$1\公众 = \"大众kill\"大众 ]; then function_killelif [ \"大众$1\"大众 = \"大众status\公众 ]; then function_statuselse echo -en \"大众\033[32;49;1m Usage: nginx {start|stop|reload|restart|kill|status}\n\"大众 echo -en \"大众\033[39;49;0m\"大众fi