Nginx 简介 Nginx (engine x) 是一款轻量级的 Web 服务器 、反向代理服务器及电子邮件(IMAP/POP3)代理服务器。什么是反向代理? 反向代理(Reverse Proxy)方式是指以代理服务器来接受 internet 上的连接请求,然后将请求转发给内部网络上的服务器,并将从服务器上得到的结果返回给 internet 上请求连接的客户端,此时代理服务器对外就表现为一个反向代理服务器。
Nginx安装 Linux安装Nginx 第一种安装方式:rpm包
进入下载页面 ,选择对应版本。1 2 3 4 5 6 wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm ```nginx2 . 安装nginx rpm包 实际上安装的是 nginx 的 yum 源。 ```nginx rpm -ivh nginx-*.rpm
安装rpm包
关闭防火墙1 2 3 firewall-cmd --zone=public --add-port=80 /tcp --permanent firewall-cmd --reload
第二种安装方式:源码编译 安装编译工具及库 Nginx 源码的编译依赖于 gcc 以及一些库文件,所以必须提前安装。
1 yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel
Nginx 依赖 pcre 库,安装步骤如下:
下载解压到本地 进入pcre 官网下载页面 ,选择合适的版本下载。 例如下载8.35版本:1 2 3 4 5 wget -O /opt/pcre/pcre-8 .35 .tar.gz http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz cd /opt/pcre tar zxvf pcre-8 .35 .tar.gz
编译安装 执行以下命令:1 2 3 4 5 cd /opt/pcre/pcre-8 .35 ./configure make && make install
检验是否安装成功 执行pcre-config --version
命令。
编译安装 Nginx
下载解压到本地 进入官网下载地址 ,选择合适的版本下载。 例如下载1.12.2 版本:http://downloads.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz 1 2 3 4 5 wget -O /opt/nginx/nginx-1 .12 .2 .tar.gz http://nginx.org/download/nginx-1.12.2.tar.gz cd /opt/nginx tar zxvf nginx-1 .12 .2 .tar.gz
编译安装 执行命令:1 2 3 4 5 cd /opt/nginx/nginx-1 .12 .2 ./configure --with-http_stub_status_module --with-http_ssl_module --with-pcre=/opt/pcre/pcre-8 .35 make && make install
关闭防火墙:1 2 3 firewall-cmd --zone=public --add-port=80 /tcp --permanent firewall-cmd --reload
启动Nginx 执行Nginx
命令行即可启动Nginx。 启动后,访问站点会出现”Welcome to nginx… “的字样。
Linux 开机自启动 Centos7 以上是用 Systemd 进行系统初始化的,Systemd 是 Linux 系统中最新的初始化系统(init),它主要的设计目标是克服 sysvinit 固有的缺点,提高系统的启动速度。Systemd 服务文件以 .service 结尾。
rpm 包安装方式 如果是通过 rpm 包安装的,会自动创建 nginx.service 文件。 直接用命令:
1 systemctl enable nginx.service
设置开机启动即可。
源码编译方式 如果采用源码编译方式,需要手动创建 nginx.service 文件。
Docker安装Nginx
官网镜像地址:https://hub.docker.com/_/nginx/
下载镜像: docker pull nginx
启动容器: docker run --name my-nginx -p 80:80 -v /data/docker/nginx/logs:/var/log/nginx -v /data/docker/nginx/conf/nginx.conf:/etc/nginx/nginx.conf:ro -d nginx
重新加载配置(如果命令无效,尝试重启服务): docker exec -it my-nginx nginx -s reload
停止服务: docker exec -it my-nginx nginx -s stop
或者 docker stop my-nginx
重新启动服务: docker restart my-nginx
脚本安装Nginx 脚本内容如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 BLACK="\033[1;30m" RED="\033[1;31m" GREEN="\033[1;32m" YELLOW="\033[1;33m" BLUE="\033[1;34m" PURPLE="\033[1;35m" CYAN="\033[1;36m" RESET="$(tput sgr0)" ################################################################################### printf " ${BLUE} \n" cat << EOF ################################################################################### # 采用编译方式安装 Nginx, 并将其注册为 systemd 服务 # 默认下载安装 1.16.0 版本,安装路径为:/usr/local/nginx # @system : 适用于 CentOS7+ # @author : Zhang Peng ################################################################################### EOF printf " ${RESET} \n" command -v yum > /dev/null 2>&1 || { printf " ${RED} Require yum but it's not installed.${RESET} \n"; exit 1; } printf "\n${GREEN} >>>>>>>> install nginx begin${RESET} \n" if [[ $# -lt 1 ]] || [[ $# -lt 2 ]]; then printf "${PURPLE} [Hint]\n" printf "\t Usage: sh nginx-install.sh [version] \n" printf "\t Default: sh nginx-install.sh 1.16.0 \n" printf "\t Example: sh nginx-install.sh 1.16.0 \n" printf "${RESET} \n" fi temp=/opt/nginx version=1.16.0 if [[ -n $1 ]]; then version=$1 fi # install info printf "${PURPLE} [Install Info]\n" printf "\t version = ${version} \n" printf "${RESET} \n" printf "${CYAN} >>>> install required libs${RESET} \n" yum install -y zlib zlib-devel gcc-c++ libtool openssl openssl-devel pcre # download and decompression printf "${CYAN} >>>> download nginx${RESET} \n" mkdir -p ${temp} curl -o ${temp} /nginx-${version} .tar.gz http://nginx.org/download/nginx-${version} .tar.gz tar zxf ${temp} /nginx-${version} .tar.gz -C ${temp} # configure and makefile printf "${CYAN} >>>> compile nginx${RESET} \n" cd ${temp} /nginx-${version} ./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-pcre make && make install rm -rf ${temp} cd - # setting systemd service printf "${CYAN} >>>> set nginx as a systemd service${RESET} \n" wget -N https://gitee.com/turnon/linux-tutorial/raw/master/codes/linux/soft/config/nginx/nginx.service -O /usr/lib/systemd/system/nginx.service chmod +x /usr/lib/systemd/system/nginx.service # boot nginx printf "${CYAN} >>>> start nginx${RESET} \n" systemctl enable nginx.service systemctl start nginx.service printf "\n${GREEN} <<<<<<<< install nginx end${RESET} \n" printf "\n${PURPLE} nginx service status: ${RESET} \n" systemctl status nginx
说明
采用编译方式安装 Nginx, 并将其注册为 systemd 服务
安装路径为:/usr/local/nginx
默认下载安装 1.16.0 版本
使用方法 新建一个 nginx-install.sh
的空文件,将上述代码粘贴至文件中。 执行如下命令:
1 sh nginx-install.sh [version]
Nginx入门 nginx 常用到的命令如下:
命令
说明
nginx -s stop
快速关闭Nginx,可能不保存相关信息,并迅速终止web服务。
nginx -s quit
平稳关闭Nginx,保存相关信息,有安排的结束web服务。
nginx -s reload
因改变了Nginx相关配置,需要重新加载配置而重载。
nginx -s reopen
重新打开日志文件。
nginx -c filename
为 Nginx 指定一个配置文件,来代替缺省的。
nginx -t
不运行,仅仅测试配置文件。nginx 将检查配置文件的语法的正确性,并尝试打开配置文件中所引用到的文件。
nginx -v
显示 nginx 的版本。
nginx -V
显示 nginx 的版本,编译器版本和配置参数。
为了方便,可以在 nginx 安装目录下新添一个启动批处理文件startup.bat,双击即可运行。内容如下:
1 2 3 4 5 6 7 8 9 10 11 12 @echo off rem 如果启动前已经启动nginx并记录下pid文件,会kill指定进程 nginx.exe -s stop rem 测试配置文件语法正确性 nginx.exe -t -c conf/nginx.conf rem 显示版本信息 nginx.exe -v rem 按照指定配置去启动nginx nginx.exe -c conf/nginx.conf
在 Linux 下,写一个 shell 脚本。
Nginx实战 这里举一些例子。
Http 反向代理 nginx.conf
配置文件如下:
注:conf/nginx.conf 是 nginx 的默认配置文件。你也可以使用 nginx -c 指定你的配置文件
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 worker_processes 1 ;error_log D:/Tools/nginx-1 .10 .1 /logs/error .log;error_log D:/Tools/nginx-1 .10 .1 /logs/notice .log notice ;error_log D:/Tools/nginx-1 .10 .1 /logs/info .log info ;pid D:/Tools/nginx-1 .10 .1 /logs/nginx.pid;events { worker_connections 1024 ; }http { include D:/Tools/nginx-1 .10 .1 /conf/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 "' ; access_log D:/Tools/nginx-1 .10 .1 /logs/access.log main; rewrite_log on ; sendfile on ; keepalive_timeout 120 ; tcp_nodelay on ; upstream zp_server1{ server 127.0.0.1:8089 ; } server { listen 80 ; server_name www.helloworld.com; index index.html root D:\01_Workspace\Project\github\zp\SpringNotes\spring-security\spring-shiro\src\main\webapp; charset utf-8 ; proxy_connect_timeout 180 ; proxy_send_timeout 180 ; proxy_read_timeout 180 ; proxy_set_header Host $host ; proxy_set_header X-Forwarder-For $remote_addr ; location / { proxy_pass http://zp_server1; } location ~ ^/(images|javascript|js|css|flash|media|static)/ { root D:\01_Workspace\Project\github\zp\SpringNotes\spring-security\spring-shiro\src\main\webapp\views; expires 30d ; } location /NginxStatus { stub_status on ; access_log on ; auth_basic "NginxStatus" ; auth_basic_user_file conf/htpasswd; } location ~ /\.ht { deny all; } } }
配置完成后验证步骤如下:
启动 webapp,注意启动绑定的端口要和 nginx 中的 upstream 设置的端口保持一致。
更改 host:在 C:\Windows\System32\drivers\etc
目录下的 host 文件中添加一条 DNS 记录(Mac host目录为:/etc/hosts
,注意修改是需要权限,可以将文件copy出去再复制回来)1 127.0.0.1 www.helloworld.com
启动前文中 startup.bat 的命令
在浏览器中访问 www.helloworld.com,不出意外,已经可以访问了。
Https 反向代理 一些对安全性要求比较高的站点,可能会使用 HTTPS(一种使用 ssl 通信标准的安全 HTTP 协议)。
这里不科普 HTTP 协议和 SSL 标准。但是,使用 nginx 配置 https 需要知道几点:
HTTPS 的固定端口号是 443,不同于 HTTP 的 80 端口
SSL 标准需要引入安全证书,所以在 nginx.conf 中你需要指定证书和它对应的 key
其他和 http 反向代理基本一样,只是在 Server 部分配置有些不同。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 server { listen 443 ssl; server_name www.helloworld.com; 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 /root; index index.html index.htm; } }
负载均衡 前面的例子中,代理仅仅指向一个服务器。
但是,网站在实际运营过程中,大部分都是以集群的方式运行,这时需要使用负载均衡来分流。
nginx 也可以实现简单的负载均衡功能。 假设这样一个应用场景:将应用部署在 192.168.1.11:80、192.168.1.12:80、192.168.1.13:80 三台 linux 环境的服务器上。网站域名叫 www.helloworld.com,公网 IP 为 192.168.1.11。在公网 IP 所在的服务器上部署 nginx,对所有请求做负载均衡处理(下面例子中使用的是加权轮询策略)。
nginx.conf 配置如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 http { include /etc/nginx/mime.types; default_type application/octet-stream; access_log /var/log/nginx/access.log; upstream load_balance_server { server 192.168.1.11:80 weight=5 ; server 192.168.1.12:80 weight=1 ; server 192.168.1.13:80 weight=6 ; } server { listen 80 ; server_name www.helloworld.com; location / { root /root; index index.html index.htm; proxy_pass http://load_balance_server ; proxy_set_header Host $host ; proxy_set_header X-Real-IP $remote_addr ; proxy_set_header X-Forwarded-For $remote_addr ; proxy_connect_timeout 90 ; proxy_send_timeout 90 ; proxy_read_timeout 90 ; proxy_buffer_size 4k ; proxy_buffers 4 32k ; proxy_busy_buffers_size 64k ; proxy_temp_file_write_size 64k ; client_max_body_size 10m ; client_body_buffer_size 128k ; } } }
负载均衡策略 Nginx 提供了多种负载均衡策略,让我们来一一了解一下:
负载均衡策略在各种分布式系统中基本上原理一致,如果要深入了解参考负载均衡 。
轮询 1 2 3 4 5 6 upstream bck_testing_01 { server 192.168.250.220:8080 server 192.168.250.221:8080 server 192.168.250.222:8080 }
加权轮询 1 2 3 4 5 upstream bck_testing_01 { server 192.168.250.220:8080 weight=3 server 192.168.250.221:8080 server 192.168.250.222:8080 }
最少连接 1 2 3 4 5 6 7 8 upstream bck_testing_01 { least_conn; server 192.168.250.220:8080 server 192.168.250.221:8080 server 192.168.250.222:8080 }
加权最少连接 1 2 3 4 5 6 7 upstream bck_testing_01 { least_conn; server 192.168.250.220:8080 weight=3 server 192.168.250.221:8080 server 192.168.250.222:8080 }
IP Hash 1 2 3 4 5 6 7 8 upstream bck_testing_01 { ip_hash; server 192.168.250.220:8080 server 192.168.250.221:8080 server 192.168.250.222:8080 }
普通 Hash 1 2 3 4 5 6 7 8 upstream bck_testing_01 { hash $request_uri ; server 192.168.250.220:8080 server 192.168.250.221:8080 server 192.168.250.222:8080 }
网站有多个 webapp 的配置 当一个网站功能越来越丰富时,往往需要将一些功能相对独立的模块剥离出来,独立维护。这样的话,通常,会有多个 webapp。
举个例子:假如 www.helloworld.com 站点有好几个 webapp,finance(金融)、product(产品)、admin(用户中心)。访问这些应用的方式通过上下文(context)来进行区分:
www.helloworld.com/finance/
www.helloworld.com/product/
www.helloworld.com/admin/
我们知道,http 的默认端口号是 80,如果在一台服务器上同时启动这 3 个 webapp 应用,都用 80 端口,肯定是不成的。所以,这三个应用需要分别绑定不同的端口号。
那么,问题来了,用户在实际访问 www.helloworld.com 站点时,访问不同 webapp,总不会还带着对应的端口号去访问吧。所以,你再次需要用到反向代理来做处理。
配置也不难,来看看怎么做吧:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 http { upstream product_server{ server www.helloworld.com:8081 ; } upstream admin_server{ server www.helloworld.com:8082 ; } upstream finance_server{ server www.helloworld.com:8083 ; } server { location / { proxy_pass http://product_server; } location /product/{ proxy_pass http://product_server; } location /admin/ { proxy_pass http://admin_server; } location /finance/ { proxy_pass http://finance_server; } } }
静态站点 有时候,我们需要配置静态站点(即 html 文件和一堆静态资源)。
举例来说:如果所有的静态资源都放在了 /app/dist 目录下,我们只需要在 nginx.conf 中指定首页以及这个站点的 host 即可。
配置如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 worker_processes 1 ;events { worker_connections 1024 ; }http { include mime.types; default_type application/octet-stream; sendfile on ; keepalive_timeout 65 ; gzip on ; gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/javascript image/jpeg image/gif image/png; gzip_vary on ; server { listen 80 ; server_name static.zp.cn; location / { root /app/dist; index index.html; } } }
然后,添加 HOST:
此时,在本地浏览器访问 static.zp.cn
,就可以访问静态站点了。
搭建文件服务器 有时候,团队需要归档一些数据或资料,那么文件服务器必不可少。使用 Nginx 可以非常快速便捷的搭建一个简易的文件服务。
Nginx 中的配置要点:
将 autoindex 开启可以显示目录,默认不开启。
将 autoindex_exact_size 开启可以显示文件的大小。
将 autoindex_localtime 开启可以显示文件的修改时间。
root 用来设置开放为文件服务的根路径。
charset 设置为 charset utf-8,gbk;,可以避免中文乱码问题(windows 服务器下设置后,依然乱码,本人暂时没有找到解决方法)。
一个最简化的配置如下:
1 2 3 4 5 6 7 8 9 10 11 autoindex on ;autoindex_exact_size on ;autoindex_localtime on ;server { charset utf-8 ,gbk; listen 9050 default_server; listen [::]:9050 default_server; server_name _; root /share/fs; }
解决跨域 web 领域开发中,经常采用前后端分离模式。这种模式下,前端和后端分别是独立的 web 应用程序,例如:后端是 Java 程序,前端是 React 或 Vue 应用。
各自独立的 web app 在互相访问时,势必存在跨域问题。解决跨域问题一般有两种思路:
CORS 在后端服务器设置 HTTP 响应头,把你需要允许访问的域名加入 Access-Control-Allow-Origin 中。
jsonp 把后端根据请求,构造 json 数据,并返回,前端用 jsonp 跨域。
这两种思路,本文不展开讨论。
需要说明的是,nginx 根据第一种思路,也提供了一种解决跨域的解决方案。
举例:www.helloworld.com 网站是由一个前端 app ,一个后端 app 组成的。前端端口号为 9000, 后端端口号为 8080。
前端和后端如果使用 http 进行交互时,请求会被拒绝,因为存在跨域问题。来看看,nginx 是怎么解决的吧:
首先,在 enable-cors.conf 文件中设置 cors :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 set $ACAO '*' ;if ($http_origin ~* (www.helloworld.com)$) { set $ACAO $http_origin ; }if ($cors = "trueget" ) { add_header 'Access-Control-Allow-Origin' "$http_origin " ; add_header 'Access-Control-Allow-Credentials' 'true' ; add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS' ; add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type' ; }if ($request_method = 'OPTIONS' ) { set $cors "${cors} options" ; }if ($request_method = 'GET' ) { set $cors "${cors} get" ; }if ($request_method = 'POST' ) { set $cors "${cors} post" ; }
接下来,在你的服务器中 include enable-cors.conf
来引入跨域配置:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 upstream front_server{ server www.helloworld.com:9000 ; }upstream api_server{ server www.helloworld.com:8080 ; }server { listen 80 ; server_name www.helloworld.com; location ~ ^/api/ { include enable-cors.conf; proxy_pass http://api_server; rewrite "^/api/(.*)$" /$1 break ; } location ~ ^/ { proxy_pass http://front_server; } }
Over!
参考文档: