我正在尝试在nginx上使用反向代理以及基本身份验证。我的API的设计方式是这样的,其中一些Rest调用是打开的,有些需要Bearer令牌。我看到一个较旧的帖子,其中有人提出了在请求中使用单独变量并将其发送到API的想法。但是我想要,如果变量在查询中不可用,则不要将不记名令牌发送到API。 这是我的配置:
location / {
auth_basic "Restricted Content";
auth_basic_user_file /etc/nginx/.htpasswd;
proxy_http_version 1.1;
proxy_pass_request_headers on;
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 Accept-Encoding "";
proxy_set_header Authorization "Bearer $arg_token";
proxy_pass_header Authorization;
#proxy_redirect off;
proxy_pass https://192.168.0.37/myapi/;
#proxy_set_header Host $host;
proxy_redirect default;
}
所以我无法将请求发送到nginx服务:
http:// my-server-ip / api / v1 / customer?id = 12345&token = 0pyLQi6CcHtoEJojPTt48qEnqDo / 8NGc 但是我希望当我需要访问一个开放的api URL时,不需要在请求中发送任何令牌,但是通过上述设置,我必须甚至需要发送令牌,即使是空字符串也可以,因为我的api可以忽略此令牌
http://my-server-ip/api/v1/allcustomers?token=''
是否可以避免发送空令牌并在nginx config中解决此问题,如果在请求中找不到令牌,则添加空承载令牌?