Last active
May 31, 2021 08:20
-
-
Save flyhigher139/b23f26b2720f4a08f3e5b4122d007dad to your computer and use it in GitHub Desktop.
NginX 反向代理example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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