Skip to content

Instantly share code, notes, and snippets.

@flyhigher139
Last active May 31, 2021 08:20
Show Gist options
  • Save flyhigher139/b23f26b2720f4a08f3e5b4122d007dad to your computer and use it in GitHub Desktop.
Save flyhigher139/b23f26b2720f4a08f3e5b4122d007dad to your computer and use it in GitHub Desktop.
NginX 反向代理example
server {
listen 80;
server_name localhost;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
add_header 'Access-Control-Allow-Origin' '*';
location /proxy/ {
rewrite /foo/(.*) /$1 break;
proxy_pass https://172.22.237.122:3002/;
proxy_ssl_verify off;
proxy_redirect off;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment