Skip to content

Instantly share code, notes, and snippets.

@hashmaparraylist
Created November 29, 2021 09:14
Show Gist options
  • Save hashmaparraylist/5c1849f56e2f780e2f0c1c04c7057ebc to your computer and use it in GitHub Desktop.
Save hashmaparraylist/5c1849f56e2f780e2f0c1c04c7057ebc to your computer and use it in GitHub Desktop.
Nginx方向代理
server
{
listen 80 default;
server_name _;
index index.html index.htm index.php;
root /data/httpd/;
location ^~ /ms/b/ {
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 X-NginX-Proxy true;
proxy_redirect off;
proxy_pass http://127.0.0.1:30080/;
}
location ^~ /ms/a/ {
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 X-NginX-Proxy true;
proxy_redirect off;
proxy_pass http://127.0.0.1:30070/;
}
access_log /var/log/nginx/access.log access;
#access_log off;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment