我尝试过多种通过 NGINX 代理任意 URL 的解决方案。我的意思是请求http://myhost/proxy/http://someurl.com?whatever=foo
和获得http://someurl.com?whatever=foo
服务。我需要这个来将 CORS 标头添加到响应中。我尝试过的一个解决方案是这,另一个是我在这个答案,并且都返回一个404
而不是我需要代理的内容。
这里是我的(标准原始)配置,其中包含第二个答案中提出的解决方案,在server
->下location
:
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 8080;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location ~ /proxy/\?url=(.*)$ {
proxy_pass $1;
proxy_set_header Host $host;
}
location ~ /proxy/https\:\/\/(.*)$ {
proxy_pass $1;
proxy_set_header Host $host;
}
location / {
root html;
index index.html index.htm;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
include servers/*;
}
编辑:我尝试将地点~* /proxy/(?<pschema>https?)://(?<phost>[\w.]+)(?<puri>\/.*)
与nginx 配置检查器它应该匹配http://localhost:8080/proxy/http://google.com/
,但它在我的配置中不起作用。
答案1
location
nginx 只匹配指令中URL的路径部分。
所以
location ~ /proxy/\?url=(.*)$ {
不匹配任何内容,因为您正在尝试匹配查询字符串。您需要使用变量来获取查询参数$arg_url
的内容。url
其次location
,您的proxy_pass
目的地缺少协议。
location ~ /proxy/https\:\/\/(.*)$ {
proxy_pass $1;
proxy_set_header Host $host;
}
您的正则表达式捕获了 URL 的域和路径部分。但是,proxy_pass
需要完整的 URL,其中必须包含协议。
答案2
解决方案如下(阅读之后的解释):
location ~* /proxy/(?<pschema>https?):/(?<phost>[\w.]+)(?<puri>\/.*) {
set $adr $pschema://$phost;
rewrite .* $puri break;
resolver 8.8.8.8;
proxy_pass $adr;
add_header X-debug-message "adr: $adr" always;
add_header X-debug-message "puri: $puri" always;
add_header X-debug-message "pschema: $pschema" always;
add_header X-debug-message "phost: $phost" always;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $phost;
proxy_set_header X-NginX-Proxy true;
proxy_redirect off;
proxy_connect_timeout 1;
proxy_intercept_errors on;
expires 30;
}
原始正则表达式要求://
http(s) 后面有一个。Nginx 会默默地从 URI 中删除一个/
,因此无法匹配。此外,有时可能会发生重定向而不是代理。但这是由您请求的服务完成的。在这种情况下,尝试代理 google likecurl -vv http://localhost:8080/proxy/http://google.com/
将导致 google 尝试将您重定向到万维网.google.com 。但如果您尝试curl -vv http://localhost:8080/proxy/http://www.google.com/
,您将被代理。
但是这种方法不适用于加载整个网站,因为它们的资源(图片、.js、.css 等)是相对链接的,因此浏览器会尝试从您的服务器获取它。但代理单个文件可以正常工作,这正是我的目标。