常规转发

https://blog.csdn.net/skybulex/article/details/126705516

  • 注意关闭 http2(有些老的服务器不支持http2)
upstream saas8010 {
    server info.xxxx.cn:8050;
}

location / {
    proxy_pass http://saas8010;
}

含二级目录转发


location ^~ / {
    proxy_pass http://saas8010;
}

常用转发带参

proxy_set_header Connection "";
proxy_set_header Accept-Encoding "";
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_set_header User-Agent $http_user_agent; 
proxy_set_header Referer $http_referer;


---------------------------------------------------------------------------
proxy_set_header Connection "";
# 用途:清空要发送到代理服务器的HTTP请求头的Connection字段。这可以避免由于Connection字段的错误配置而导致的代理连接无法正常关闭的问题。
proxy_set_header Accept-Encoding "";
#用途:清空要发送到代理服务器的HTTP请求头的Accept-Encoding字段。这可以避免由于Accept-Encoding字段的错误配置而导致的代理服务器无法正确解压缩响应的问题。

proxy_set_header Host $host;
#用途:设置要发送到代理服务器的HTTP请求头的Host字段。$host变量将被替换为客户端请求中的实际主机名。

proxy_set_header User-Agent $http_user_agent;
#用途:设置要发送到代理服务器的HTTP请求头的User-Agent字段。$http_user_agent变量将被替换为客户端请求中的实际User-Agent字符串。

proxy_set_header Referer $http_referer;
#用途:设置要发送到代理服务器的HTTP请求头的Referer字段。$http_referer变量将被替换为客户端请求中的实际Referer字符串。

proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
#用途:设置要发送到代理服务器的HTTP请求头的X-Forwarded-For字段。该字段用于记录原始客户端的IP地址。$proxy_add_x_forwarded_for变量将会在原有X-Forwarded-For字段的基础上添加一个新的IP地址

proxy_set_header X-Real-IP $remote_addr;
#用途:设置要发送到代理服务器的HTTP请求头的X-Real-IP字段。该字段用于记录客户端的真实IP地址。$remote_addr变量将被替换为客户端的真实IP地址。

其它参数

location / {
        add_header Access-Control-Allow-Origin *;
        #sub_filter 'https://dfc-pbl.jnxy.edu.cn:17454' 'jnxyadmission.schoolpi.net';
           sub_filter_types *;
        sub_filter_once off;  
}