gpt4 book ai didi

NGINX auth_request 被忽略

转载 作者:行者123 更新时间:2023-12-04 15:06:13 26 4
gpt4 key购买 nike

我的 nginx.conf 中有以下内容:

location / {
auth_request /auth;
add_header Content-Type text/plain;
return 200 'You are in!';
}

location = /auth {
proxy_pass http://localhost:5021/auth;
proxy_pass_request_body off;
proxy_set_header Host $http_host;
proxy_set_header X-Original-URI $request_uri;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Authorization $http_authorization;
proxy_pass_header Authorization;
}

因此,我希望在尝试到达 http://localhost:5021/auth时可以访问 /(一个Flask应用程序)。这不会发生,并且使用 nginx-debug 二进制文件和 error_log /var/log/nginx/error.log debug; 我从来没有看到 I expect to see 的任何调试输出(请求的日志可用 here )。没有错误,既没有打印到控制台,也没有打印到任何 nginx 的日志文件。似乎 auth_request 行只是被默默地忽略了。
nginx-debug -V 的输出(它确实包含 --with-http_auth_request_module ):
nginx version: nginx/1.15.8
built by gcc 6.4.0 (Alpine 6.4.0)
built with OpenSSL 1.0.2q 20 Nov 2018
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-http_xslt_module=dynamic --with-http_image_filter_module=dynamic --with-http_geoip_module=dynamic --with-threads --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module --with-stream_realip_module --with-stream_geoip_module=dynamic --with-http_slice_module --with-mail --with-mail_ssl_module --with-compat --with-file-aio --with-http_v2_module --with-debug

最佳答案

return 将无条件停止处理并将指定的代码返回给客户端,您可能想要删除它。

关于NGINX auth_request 被忽略,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54733347/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com