Nginx Proxy_Pass和Rewirte的用法

Nginx Proxy_Pass和Rewirte的用法

Nginx中我们用的比较多的肯定就是serverloction模块,在模块中用的比较多的就是proxy_passrewrite,我们这里就来大概了解一下这二者的常用用法。

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
$args                    #请求中的参数值
$query_string #同 $args
$arg_NAME #GET请求中NAME的值
$is_args #如果请求中有参数,值为"?",否则为空字符串
$uri #请求中的当前URI(不带请求参数,参数位于$args),可以不同于浏览器传递的$request_uri的值,它可以通过内部重定向,或者使用index指令进行修改,$uri不包含主机名,如"/foo/bar.html"。
$document_uri #同 $uri
$document_root #当前请求的文档根目录或别名
$host #优先级:HTTP请求行的主机名>"HOST"请求头字段>符合请求的服务器名.请求中的主机头字段,如果请求中的主机头不可用,则为服务器处理请求的服务器名称
$hostname #主机名
$https #如果开启了SSL安全模式,值为"on",否则为空字符串。
$binary_remote_addr #客户端地址的二进制形式,固定长度为4个字节
$body_bytes_sent #传输给客户端的字节数,响应头不计算在内;这个变量和Apache的mod_log_config模块中的"%B"参数保持兼容
$bytes_sent #传输给客户端的字节数
$connection #TCP连接的序列号
$connection_requests #TCP连接当前的请求数量
$content_length #"Content-Length" 请求头字段
$content_type #"Content-Type" 请求头字段
$cookie_name #cookie名称
$limit_rate #用于设置响应的速度限制
$msec #当前的Unix时间戳
$nginx_version #nginx版本
$pid #工作进程的PID
$pipe #如果请求来自管道通信,值为"p",否则为"."
$proxy_protocol_addr #获取代理访问服务器的客户端地址,如果是直接访问,该值为空字符串
$realpath_root #当前请求的文档根目录或别名的真实路径,会将所有符号连接转换为真实路径
$remote_addr #客户端地址
$remote_port #客户端端口
$remote_user #用于HTTP基础认证服务的用户名
$request #代表客户端的请求地址
$request_body #客户端的请求主体:此变量可在location中使用,将请求主体通过proxy_pass,fastcgi_pass,uwsgi_pass和scgi_pass传递给下一级的代理服务器
$request_body_file #将客户端请求主体保存在临时文件中。文件处理结束后,此文件需删除。如果需要之一开启此功能,需要设置client_body_in_file_only。如果将次文件传 递给后端的代理服务器,需要禁用request body,即设置proxy_pass_request_body off,fastcgi_pass_request_body off,uwsgi_pass_request_body off,or scgi_pass_request_body off
$request_completion #如果请求成功,值为"OK",如果请求未完成或者请求不是一个范围请求的最后一部分,则为空
$request_filename #当前连接请求的文件路径,由root或alias指令与URI请求生成
$request_length #请求的长度 (包括请求的地址,http请求头和请求主体)
$request_method #HTTP请求方法,通常为"GET"或"POST"
$request_time #处理客户端请求使用的时间,单位为秒,精度毫秒; 从读入客户端的第一个字节开始,直到把最后一个字符发送给客户端后进行日志写入为止。
$request_uri #这个变量等于包含一些客户端请求参数的原始URI,它无法修改,请查看$uri更改或重写URI,不包含主机名,例如:"/cnphp/test.php?arg=freemouse"
$scheme #请求使用的Web协议,"http" 或 "https"
$server_addr #服务器端地址,需要注意的是:为了避免访问linux系统内核,应将ip地址提前设置在配置文件中
$server_name #服务器名
$server_port #服务器端口
$server_protocol #服务器的HTTP版本,通常为 "HTTP/1.0" 或 "HTTP/1.1"
$status #HTTP响应代码
$time_iso8601 #服务器时间的ISO 8610格式
$time_local #服务器时间(LOG Format 格式)
$cookie_NAME #客户端请求Header头中的cookie变量,前缀"$cookie_"加上cookie名称的变量,该变量的值即为cookie名称的值
$http_NAME #匹配任意请求头字段;变量名中的后半部分NAME可以替换成任意请求头字段,如在配置文件中需要获取http请求头:"Accept-Language",$http_accept_language即可
$http_cookie
$http_host #请求地址,即浏览器中你输入的地址(IP或域名)
$http_referer #url跳转来源,用来记录从那个页面链接访问过来的
$http_user_agent #用户终端浏览器等信息
$http_x_forwarded_for
$sent_http_NAME #可以设置任意http响应头字段;变量名中的后半部分NAME可以替换成任意响应头字段,如需要设置响应头Content-length,$sent_http_content_length即可
$sent_http_cache_control
$sent_http_connection
$sent_http_content_type
$sent_http_keep_alive
$sent_http_last_modified
$sent_http_location
$sent_http_transfer_encoding

proxy_pass的用法

proxy_pass反向代理,主要用于请求的转发,先来看看常用的转发方式
先配置一个简单的html服务器:

1
2
3
4
5
6
7
8
9
10
11
12
13
server{
listen 800;
server_name localhost;

#charset koi8-r;

#access_log logs/host.access.log main;

location / {
root html;
index index.html index.htm;
}
}
1
2
3
location /proxy1/{
proxy_pass http://localhost:800/;
}

访问:http://localhost/proxy1/index.html,代理到 http://localhost:800/index.html

1
2
3
location /proxy2/{
proxy_pass http://localhost:800;
}

访问:http://localhost/proxy2/index.html,代理到 http://localhost:800/proxy2/index.html

1
2
3
location /proxy3/{
proxy_pass http://localhost:800/web/;
}

访问:http://localhost/proxy3/index.html,代理到 http://localhost:800/web/index.html

1
2
3
location /proxy4/{
proxy_pass http://localhost:800/web;
}

访问:http://localhost/proxy4/index.html,代理到 http://localhost:800/webindex.html

上面演示的只是简单的请求代理,一般我们还会用到较为高级一点的负载均衡,Nginx均衡策略有6种:

  • 轮询:每个请求按顺序逐一分配到不同的后端服务器,如果后端服务器down掉,就不在分配;

    1
    2
    3
    4
    upstream webapi {
    server 127.0.0.1:801 max_fails=5 fail_timeout=20;
    server 127.0.0.1:802 max_fails=5 fail_timeout=20;
    }
  • 权重轮询:根据后端服务器性能不通配置轮询的权重比,权重越高访问的比重越高;

    1
    2
    3
    4
    upstream webapi {
    server 127.0.0.1:801 weight=2 max_fails=5 fail_timeout=20;
    server 127.0.0.1:802 weight=6 max_fails=5 fail_timeout=20;
    }
  • ip_hash:根据请求的ip地址hash结果进行分配,同一个IP的请求会落在同一个后端,可以解决Session同步的问题;

    1
    2
    3
    4
    5
    upstream webapi {
    ip_hash;
    server 127.0.0.1:801 max_fails=5 fail_timeout=20;
    server 127.0.0.1:802 max_fails=5 fail_timeout=20;
    }
  • fair:按后端服务器的响应时间来分配请求,响应时间短的优先分配;

    1
    2
    3
    4
    5
    upstream webapi {
    fair;
    server 127.0.0.1:801 max_fails=5 fail_timeout=20;
    server 127.0.0.1:802 max_fails=5 fail_timeout=20;
    }
  • url_hash:按访问url的hash结果来分配请求,使每个url落在同一个后端服务器,后端服务器为缓存时才用此种方式较妥。

1
2
3
4
5
upstream webapi {
hash $request_uri;
server 127.0.0.1:801 max_fails=5 fail_timeout=20;
server 127.0.0.1:802 max_fails=5 fail_timeout=20;
}
  • least_conn:把请求转发给连接数较少的后端服务器

    1
    2
    3
    4
    5
    upstream webapi {
    least_conn;
    server 127.0.0.1:801 max_fails=5 fail_timeout=20;
    server 127.0.0.1:802 max_fails=5 fail_timeout=20;
    }

    说明:在单位周期为fail_timeout设置的时间,中达到max_fails次数,这个周期次数内,如果后端同一个节点不可用,那么接将把节点标记为不可用,并等待下一个周期(同样时常为fail_timeout)再一次去请求,判断是否连接是否成功。默认:fail_timeout为10s,max_fails为1次。在做请求转发的时候,有时候可能会遇到端口丢失的情况,这时候就需要在location模块做如下配置:

    1
    2
    3
    4
    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-Server $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header Host $host:$server_port; #这里是重点,这样配置才不会丢失端口

    Rewrite的用法

    Rewrite顾名思义,就是规则重写,主要功能是实现浏览器访问 Http URL的跳转,语法格式:rewrite <正则表达式> <代替的内容> <重写类型>;,重写类型有4种:

    • last:本条规则匹配完成后,继续向下匹配新的location URI规则;浏览器地址栏URL地址不变;一般写在server和if中;
    • break:本条规则匹配完成后,终止匹配,不再匹配后面的规则,浏览器地址栏URL地址不变;一般使用在location中;
    • redirect:返回302临时重定向,浏览器地址会显示跳转后的URL地址;
    • permanent:返回301永久重定向,浏览器地址栏会显示跳转后的URL地址;
      示例说明:
      1
      rewrite /rewrite.html /index.html last;
      访问/rewrite.html的时候,页面内容重写到/index.html中,并继续匹配,浏览器URL地址不变
    1
    rewrite /break.html /index.html break;

    访问/break.html的时候,页面内容重写到/index.html中,并停止后续匹配,浏览器URL地址不变

    1
    rewrite /redirect.html /index.html redirect;

    访问/redirect.html的时候,页面直接302重定向到/index.html中,浏览器URL跳为index.html

    1
    rewrite /permanent.html /index.html permanent;

    访问/permanent.html的时候,页面直接301重定向到/index.html中,浏览器URL跳为index.html

    1
    rewrite ^/html/(.+?).html$ /permanent/$1.html permanent;

    /html/*.html301重定向到/permanent/*.html

1
rewrite ^/(.*) https://www.baidu.com/$1 permanent;

把当前域名的请求,重定向到新域名上,URL域名变化,域名后的路径不变,访问:http://localhost/s?wd=nginx%20rewrite%E8%AF%A6%E8%A7%A3&rsv_spt=1&rsv_iqid=0xd27651610002bd69&issp=1&f=3&rsv_bp=1&rsv_idx=2&ie=utf-8&rqlang=cn&tn=baiduhome_pg&rsv_enter=0&rsv_dl=ts_0&oq=nginx%25E4%25BB%25A3%25E7%2590%2586%25E7%25AB%25AF%25E5%258F%25A3%25E4%25B8%25A2%25E5%25A4%25B1&inputT=2230&rsv_t=3e937ZY1a4uEO2TEPB%2BcJfOX%2FgNXA%2B26nrz3bOXnJHZUv6OAhomZhXh74aAaaNCm3897&rsv_pq=b9fe0f2a0000ae48&rsv_sug3=127&rsv_sug1=88&rsv_sug7=100&rsv_sug2=1&prefixsug=nginx%2520Rewrite&rsp=0&rsv_sug4=2409, 地址会变为:https://www.baidu.com/s?wd=nginx%20rewrite%E8%AF%A6%E8%A7%A3&rsv_spt=1&rsv_iqid=0xd27651610002bd69&issp=1&f=3&rsv_bp=1&rsv_idx=2&ie=utf-8&rqlang=cn&tn=baiduhome_pg&rsv_enter=0&rsv_dl=ts_0&oq=nginx%25E4%25BB%25A3%25E7%2590%2586%25E7%25AB%25AF%25E5%258F%25A3%25E4%25B8%25A2%25E5%25A4%25B1&inputT=2230&rsv_t=3e937ZY1a4uEO2TEPB%2BcJfOX%2FgNXA%2B26nrz3bOXnJHZUv6OAhomZhXh74aAaaNCm3897&rsv_pq=b9fe0f2a0000ae48&rsv_sug3=127&rsv_sug1=88&rsv_sug7=100&rsv_sug2=1&prefixsug=nginx%2520Rewrite&rsp=0&rsv_sug4=2409

#
You forgot to set the qrcode for Alipay. Please set it in _config.yml.
You forgot to set the qrcode for Wechat. Please set it in _config.yml.
You forgot to set the business and currency_code for Paypal. Please set it in _config.yml.
You forgot to set the url Patreon. Please set it in _config.yml.
Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×