Nginx

一、HTTP服务器

Nginx本身也是一个静态资源的服务器,当只有静态资源的时候,就可以使用Nginx来做服务器,如果一个网站只是静态页面的话,那么就可以通过这种方式来实现部署。 1、 首先在文档根目录Docroot(/usr/local/var/www)下创建html目录,然后在html中放一个test.html;

Nginx 的 6 大应用场景 - 图1

2、 配置nginx.conf中的server
  1. user mengday staff;
  2. http {
  3. server {
  4. listen 80;
  5. server_name localhost;
  6. client_max_body_size 1024M;
  7. # 默认location
  8. location / {
  9. root /usr/local/var/www/html;
  10. index index.html index.htm;
  11. }
  12. }
  13. }
3、访问测试

:::color1 注意:如果访问图片出现403 Forbidden错误,可能是因为nginx.conf 的第一行user配置不对,默认是#user nobody;是注释的,linux下改成user root; macos下改成user 用户名 所在组; 然后重新加载配置文件或者重启,再试一下就可以了, 用户名可以通过who am i 命令来查看。

:::

4、指令简介
  • server:用于定义服务,http中可以有多个server块
  • listen:指定服务器侦听请求的IP地址和端口,如果省略地址,服务器将侦听所有地址,如果省略端口,则使用标准端口
  • server_name:服务名称,用于配置域名
  • location:用于配置映射路径uri对应的配置,一个server中可以有多个location,location后面跟一个uri,可以是一个正则表达式,/ 表示匹配任意路径,当客户端访问的路径满足这个uri时就会执行location块里面的代码
  • root:根路径,当访问http://localhost/test.html,”/test.html”会匹配到”/“ uri,找到root为/usr/local/var/www/html,用户访问的资源物理地址=root + uri = /usr/local/var/www/html + /test.html=/usr/local/var/www/html/test.html
  • index:设置首页,当只访问server_name时后面不跟任何路径是不走root直接走index指令的;如果访问路径中没有指定具体的文件,则返回index设置的资源,如果访问http://localhost/html/则默认返回index.html
5、location uri正则表达式
  • <font style="color:rgb(53, 179, 120);">.</font>:匹配除换行符以外的任意字符
  • <font style="color:rgb(53, 179, 120);">?</font>:重复0次或1次
  • <font style="color:rgb(53, 179, 120);">+</font>:重复1次或更多次
  • <font style="color:rgb(53, 179, 120);">*</font>:重复0次或更多次
  • <font style="color:rgb(53, 179, 120);">\d</font>:匹配数字
  • <font style="color:rgb(53, 179, 120);">^</font>:匹配字符串的开始
  • <font style="color:rgb(53, 179, 120);">$</font>:匹配字符串的结束
  • <font style="color:rgb(53, 179, 120);">{n}</font>:重复n次
  • <font style="color:rgb(53, 179, 120);">{n,}</font>:重复n次或更多次
  • <font style="color:rgb(53, 179, 120);">[c]</font>:匹配单个字符c
  • <font style="color:rgb(53, 179, 120);">[a-z]</font>:匹配a-z小写字母的任意一个
  • <font style="color:rgb(53, 179, 120);">(a|b|c)</font>:属线表示匹配任意一种情况,每种情况使用竖线分隔,一般使用小括号括括住,匹配符合a字符 或是b字符 或是c字符的字符串
  • <font style="color:rgb(53, 179, 120);">\</font>反斜杠:用于转义特殊字符
小括号()之间匹配的内容,可以在后面通过<font style="color:rgb(53, 179, 120);">$1</font>来引用,<font style="color:rgb(53, 179, 120);">$2</font>表示的是前面第二个()里的内容。正则里面容易让人困惑的是<font style="color:rgb(53, 179, 120);">\</font>转义特殊字符。

二、静态服务器

在公司中经常会遇到静态服务器,通常会提供一个上传的功能,其他应用如果需要静态资源就从该静态服务器中获取。 1、在/usr/local/var/www下分别创建images和img目录,分别在每个目录下放一张test.jpg
  1. http {
  2. server {
  3. listen 80;
  4. server_name localhost;
  5. set $doc_root /usr/local/var/www;
  6. # 默认location
  7. location / {
  8. root /usr/local/var/www/html;
  9. index index.html index.htm;
  10. }
  11. location ^~ /images/ {
  12. root $doc_root;
  13. }
  14. location ~* \.(gif|jpg|jpeg|png|bmp|ico|swf|css|js)$ {
  15. root $doc_root/img;
  16. }
  17. }
  18. }
自定义变量使用set指令,语法 set 变量名值;引用使用变量名值;引用使用变量名;这里自定义了doc_root变量。 静态服务器location的映射一般有两种方式:
  • 使用路径,如 /images/ 一般图片都会放在某个图片目录下,
  • 使用后缀,如 .jpg、.png 等后缀匹配模式
访问http://localhost/test.jpg会映射到$doc_root/img 访问http://localhost/images/test.jpg当同一个路径满足多个location时,优先匹配优先级高的location,由于<font style="color:rgb(53, 179, 120);">^~</font>的优先级大于<font style="color:rgb(53, 179, 120);">~</font>,所以会走/images/对应的location 常见的location路径映射路径有以下几种:
  • <font style="color:rgb(53, 179, 120);">=</font> 进行普通字符精确匹配。也就是完全匹配。
  • <font style="color:rgb(53, 179, 120);">^~</font> 前缀匹配。如果匹配成功,则不再匹配其他location。
  • <font style="color:rgb(53, 179, 120);">~</font> 表示执行一个正则匹配,区分大小写
  • <font style="color:rgb(53, 179, 120);">~*</font> 表示执行一个正则匹配,不区分大小写
  • <font style="color:rgb(53, 179, 120);">/xxx/</font>常规字符串路径匹配
  • <font style="color:rgb(53, 179, 120);">/</font> 通用匹配,任何请求都会匹配到

location优先级

当一个路径匹配多个location时究竟哪个location能匹配到时有优先级顺序的,而优先级的顺序于location值的表达式类型有关,和在配置文件中的先后顺序无关。相同类型的表达式,字符串长的会优先匹配。 以下是按优先级排列说明:
  • 等号类型(=)的优先级最高。一旦匹配成功,则不再查找其他匹配项,停止搜索。
  • <font style="color:rgb(53, 179, 120);">^~</font>类型表达式,不属于正则表达式。一旦匹配成功,则不再查找其他匹配项,停止搜索。
  • 正则表达式类型(<font style="color:rgb(53, 179, 120);">~ ~*</font>)的优先级次之。如果有多个location的正则能匹配的话,则使用正则表达式最长的那个。
  • 常规字符串匹配类型。按前缀匹配。
  • / 通用匹配,如果没有匹配到,就匹配通用的
优先级搜索问题:不同类型的location映射决定是否继续向下搜索
  • 等号类型、<font style="color:rgb(53, 179, 120);">^~</font>类型:一旦匹配上就停止搜索了,不会再匹配其他location了
  • 正则表达式类型(<font style="color:rgb(53, 179, 120);">~ ~*</font>),常规字符串匹配类型<font style="color:rgb(53, 179, 120);">/xxx/</font>:匹配到之后,还会继续搜索其他其它location,直到找到优先级最高的,或者找到第一种情况而停止搜索
location优先级从高到底: (<font style="color:rgb(53, 179, 120);">location =</font>) > (<font style="color:rgb(53, 179, 120);">location 完整路径</font>) > (<font style="color:rgb(53, 179, 120);">location ^~ 路径</font>) > (<font style="color:rgb(53, 179, 120);">location ~,~* 正则顺序</font>) > (<font style="color:rgb(53, 179, 120);">location 部分起始路径</font>) > (<font style="color:rgb(53, 179, 120);">/</font>)
  1. location = / {
  2. # 精确匹配/,主机名后面不能带任何字符串 /
  3. [ configuration A ]
  4. }
  5. location / {
  6. # 匹配所有以 / 开头的请求。
  7. # 但是如果有更长的同类型的表达式,则选择更长的表达式。
  8. # 如果有正则表达式可以匹配,则优先匹配正则表达式。
  9. [ configuration B ]
  10. }
  11. location /documents/ {
  12. # 匹配所有以 /documents/ 开头的请求,匹配符合以后,还要继续往下搜索。
  13. # 但是如果有更长的同类型的表达式,则选择更长的表达式。
  14. # 如果有正则表达式可以匹配,则优先匹配正则表达式。
  15. [ configuration C ]
  16. }
  17. location ^~ /images/ {
  18. # 匹配所有以 /images/ 开头的表达式,如果匹配成功,则停止匹配查找,停止搜索。
  19. # 所以,即便有符合的正则表达式location,也不会被使用
  20. [ configuration D ]
  21. }
  22. location ~* \.(gif|jpg|jpeg)$ {
  23. # 匹配所有以 gif jpg jpeg结尾的请求。
  24. # 但是 以 /images/开头的请求,将使用 Configuration D,D具有更高的优先级
  25. [ configuration E ]
  26. }
  27. location /images/ {
  28. # 字符匹配到 /images/,还会继续往下搜索
  29. [ configuration F ]
  30. }
  31. location = /test.htm {
  32. root /usr/local/var/www/htm;
  33. index index.htm;
  34. }
注意:location的优先级与location配置的位置无关。

三、反向代理

反向代理应该是Nginx使用最多的功能了,反向代理(Reverse Proxy)方式是指以代理服务器来接受internet上的连接请求,然后将请求转发给内部网络上的服务器,并将从服务器上得到的结果返回给internet上请求连接的客户端,此时代理服务器对外就表现为一个反向代理服务器。 简单来说就是真实的服务器不能直接被外部网络访问,所以需要一台代理服务器,而代理服务器能被外部网络访问的同时又跟真实服务器在同一个网络环境,当然也可能是同一台服务器,端口不同而已。 反向代理通过<font style="color:rgb(53, 179, 120);">proxy_pass</font>指令来实现。 启动一个Java Web项目,端口号为8081,可以利用 Spring Boot 快速搭建一个项目:
  1. server {
  2. listen 80;
  3. server_name localhost;
  4. location / {
  5. proxy_pass http://localhost:8081;
  6. proxy_set_header Host $host:$server_port;
  7. # 设置用户ip地址
  8. proxy_set_header X-Forwarded-For $remote_addr;
  9. # 当请求服务器出错去寻找其他服务器
  10. proxy_next_upstream error timeout invalid_header http_500 http_502 http_503;
  11. }
  12. }
访问localhost的时候,就相当于访问localhost:8081了。

四、负载均衡

负载均衡也是Nginx常用的一个功能,负载均衡其意思就是分摊到多个操作单元上进行执行,例如Web服务器、FTP服务器、企业关键应用服务器和其它关键任务服务器等,从而共同完成工作任务。 简单而言就是当有2台或以上服务器时,根据规则随机的将请求分发到指定的服务器上处理,负载均衡配置一般都需要同时配置反向代理,通过反向代理跳转到负载均衡。而Nginx目前支持自带3种负载均衡策略,还有2种常用的第三方策略。 负载均衡通过upstream指令来实现。

1、RR(round robin:轮询 默认)

每个请求按时间顺序逐一分配到不同的后端服务器,也就是说第一次请求分配到第一台服务器上,第二次请求分配到第二台服务器上,如果只有两台服务器,第三次请求继续分配到第一台上,这样循环轮询下去,也就是服务器接收请求的比例是 1:1, 如果后端服务器down掉,能自动剔除。轮询是默认配置,不需要太多的配置 同一个项目分别使用8081和8082端口启动项目
  1. upstream web_servers {
  2. server localhost:8081;
  3. server localhost:8082;
  4. }
  5. server {
  6. listen 80;
  7. server_name localhost;
  8. #access_log logs/host.access.log main;
  9. location / {
  10. proxy_pass http://web_servers;
  11. # 必须指定Header Host
  12. proxy_set_header Host $host:$server_port;
  13. }
  14. }
访问地址仍然可以获得响应http://localhost/api/user/login?username=zhangsan&password=111111,这种方式是轮询的

2、权重

指定轮询几率,weight和访问比率成正比,也就是服务器接收请求的比例就是各自配置的weight的比例,用于后端服务器性能不均的情况,比如服务器性能差点就少接收点请求,服务器性能好点就多处理点请求。
  1. upstream test {
  2. server localhost:8081 weight=1;
  3. server localhost:8082 weight=3;
  4. server localhost:8083 weight=4 backup;
  5. }
示例是4次请求只有一次被分配到8081上,其他3次分配到8082上。backup是指热备,只有当8081和8082都宕机的情况下才走8083

3、ip_hash

上面的2种方式都有一个问题,那就是下一个请求来的时候请求可能分发到另外一个服务器,当程序不是无状态的时候(采用了session保存数据),这时候就有一个很大的很问题了,比如把登录信息保存到了session中,那么跳转到另外一台服务器的时候就需要重新登录了,所以很多时候需要一个客户只访问一个服务器,那么就需要用iphash了,iphash的每个请求按访问ip的hash结果分配,这样每个访客固定访问一个后端服务器,可以解决session的问题。
  1. upstream test {
  2. ip_hash;
  3. server localhost:8080;
  4. server localhost:8081;
  5. }

4、fair(第三方)

按后端服务器的响应时间来分配请求,响应时间短的优先分配。这个配置是为了更快的给用户响应
  1. upstream backend {
  2. fair;
  3. server localhost:8080;
  4. server localhost:8081;
  5. }

5、url_hash(第三方)

按访问url的hash结果来分配请求,使每个url定向到同一个后端服务器,后端服务器为缓存时比较有效。在upstream中加入hash语句,server语句中不能写入weight等其他的参数,hash_method是使用的hash算法
  1. upstream backend {
  2. hash $request_uri;
  3. hash_method crc32;
  4. server localhost:8080;
  5. server localhost:8081;
  6. }
以上5种负载均衡各自适用不同情况下使用,所以可以根据实际情况选择使用哪种策略模式,不过fair和url_hash需要安装第三方模块才能使用。

五、动静分离

动静分离是让动态网站里的动态网页根据一定规则把不变的资源和经常变的资源区分开来,动静资源做好了拆分以后,就可以根据静态资源的特点将其做缓存操作,这就是网站静态化处理的核心思路。
  1. upstream web_servers {
  2. server localhost:8081;
  3. server localhost:8082;
  4. }
  5. server {
  6. listen 80;
  7. server_name localhost;
  8. set $doc_root /usr/local/var/www;
  9. location ~* \.(gif|jpg|jpeg|png|bmp|ico|swf|css|js)$ {
  10. root $doc_root/img;
  11. }
  12. location / {
  13. proxy_pass http://web_servers;
  14. # 必须指定Header Host
  15. proxy_set_header Host $host:$server_port;
  16. }
  17. error_page 500 502 503 504 /50x.html;
  18. location = /50x.html {
  19. root $doc_root;
  20. }
  21. }

六、其他

1、return指令

返回http状态码 和 可选的第二个参数可以是重定向的URL
  1. location /permanently/moved/url {
  2. return 301 http://www.example.com/moved/here;
  3. }

2、rewrite指令

重写URI请求 <font style="color:black;">rewrite</font>,通过使用<font style="color:black;">rewrite</font>指令在请求处理期间多次修改请求URI,该指令具有一个可选参数和两个必需参数。 第一个(必需)参数是请求URI必须匹配的正则表达式。 第二个参数是用于替换匹配URI的URI。 可选的第三个参数是可以停止进一步重写指令的处理或发送重定向(代码301或302)的标志
  1. location /users/ {
  2. rewrite ^/users/(.*)$ /show?user=$1 break;
  3. }

3、error_page指令

使用error_page指令,可以配置NGINX返回自定义页面以及错误代码,替换响应中的其他错误代码,或将浏览器重定向到其他URI。在以下示例中,error_page指令指定要返回404页面错误代码的页面(/404.html)。
  1. error_page 404 /404.html;

4、日志

访问日志:需要开启压缩 <font style="color:black;">gzip on;</font> 否则不生成日志文件,打开log_formataccess_log注释
  1. log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  2. '$status $body_bytes_sent "$http_referer" '
  3. '"$http_user_agent" "$http_x_forwarded_for"';
  4. access_log /usr/local/etc/nginx/logs/host.access.log main;
  5. gzip on;

5、deny 指令

  1. # 禁止访问某个目录
  2. location ~* \.(txt|doc)${
  3. root $doc_root;
  4. deny all;
  5. }

6、内置变量

Nginx的配置文件中可以使用的内置变量以美元符<font style="color:rgb(53, 179, 120);">$</font>开始,也有人叫全局变量。其中,部分预定义的变量的值是可以改变的。
  • <font style="color:rgb(53, 179, 120);">$args</font><font style="color:rgb(53, 179, 120);">#</font>这个变量等于请求行中的参数,同<font style="color:rgb(53, 179, 120);">$query_string</font>
  • <font style="color:rgb(53, 179, 120);">$content_length</font>:请求头中的Content-length字段。
  • <font style="color:rgb(53, 179, 120);">$content_type</font>:请求头中的Content-Type字段。
  • <font style="color:rgb(53, 179, 120);">$document_root</font>:当前请求在root指令中指定的值。
  • <font style="color:rgb(53, 179, 120);">$host</font>:请求主机头字段,否则为服务器名称。
  • <font style="color:rgb(53, 179, 120);">$http_user_agent</font>:客户端agent信息
  • <font style="color:rgb(53, 179, 120);">$http_cookie</font>:客户端cookie信息
  • <font style="color:rgb(53, 179, 120);">$limit_rate</font>:这个变量可以限制连接速率。
  • <font style="color:rgb(53, 179, 120);">$request_method</font>:客户端请求的动作,通常为GET或POST。
  • <font style="color:rgb(53, 179, 120);">$remote_addr</font>:客户端的IP地址。
  • <font style="color:rgb(53, 179, 120);">$remote_port</font>:客户端的端口。
  • <font style="color:rgb(53, 179, 120);">$remote_user</font>:已经经过Auth Basic Module验证的用户名。
  • <font style="color:rgb(53, 179, 120);">$request_filename</font>:当前请求的文件路径,由root或alias指令与URI请求生成。
  • <font style="color:rgb(53, 179, 120);">$scheme</font>:HTTP方法(如http,https)。
  • <font style="color:rgb(53, 179, 120);">$server_protocol</font>:请求使用的协议,通常是HTTP/1.0或HTTP/1.1。
  • <font style="color:rgb(53, 179, 120);">$server_addr</font>:服务器地址,在完成一次系统调用后可以确定这个值。
  • <font style="color:rgb(53, 179, 120);">$server_name</font>:服务器名称。
  • <font style="color:rgb(53, 179, 120);">$server_port</font>:请求到达服务器的端口号。
  • <font style="color:rgb(53, 179, 120);">$request_uri</font>:包含请求参数的原始URI,不包含主机名,如:<font style="color:rgb(1, 1, 1);">"</font><font style="color:rgb(53, 179, 120);">/foo/bar.php?arg=baz</font><font style="color:rgb(1, 1, 1);">"</font>
  • <font style="color:rgb(53, 179, 120);">$uri</font>:不带请求参数的当前URI,<font style="color:rgb(53, 179, 120);">$uri</font>不包含主机名,如<font style="color:rgb(1, 1, 1);">"</font><font style="color:rgb(53, 179, 120);">/foo/bar.html</font><font style="color:rgb(1, 1, 1);">"</font>
  • <font style="color:rgb(53, 179, 120);">$document_uri</font>:与<font style="color:rgb(53, 179, 120);">$uri</font>相同