我想在本地使用 nginx 来绕过浏览器中的 CORS。我无法从 nginx 中取回请求。在 localhost:5000 上获取请求后,如何让它在自己的 PC 环境/上下文中调用地址。
我的 nginx.conf
server
{
listen 5000;
server_name localhost;
location / {
resolver 127.0.0.11;
set $example some-website-with-cors.com;
proxy_pass http://$example;
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain; charset=utf-8';
add_header 'Content-Length' 0;
return 204;
}
}
}
我正在构建并运行docker run -p 5000:5000 proxy:latest
Nginx+docker 不知道如何some-website-with-cors.com
在我的环境中进行回访。我该如何告诉它将请求引向何处?