Não consigo encontrar essas informações on-line sobre qual versão o nginx aproveitou para incluir o http_auth_basic_module
como uma opção de configuração. Além disso, como faço para habilitá-lo? Ou de onde posso baixar módulos?
Configuração do servidor:
nginx -V
nginx version: nginx/1.24.0 (Ubuntu)
built with OpenSSL 3.0.13 30 Jan 2024
TLS SNI support enabled
./configure \
--with-cc-opt='-g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/build/nginx-DlMnQR/nginx-1.24.0=. -flto=auto -ffat-lto-objects -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/build/nginx-DlMnQR/nginx-1.24.0=/usr/src/nginx-1.24.0-2ubuntu7.1 -fPIC -Wdate-time -D_FORTIFY_SOURCE=3' \
--with-ld-opt='-Wl,-Bsymbolic-functions -flto=auto -ffat-lto-objects -Wl,-z,relro -Wl,-z,now -fPIC' \
--prefix=/usr/share/nginx \
--conf-path=/etc/nginx/nginx.conf \
--http-log-path=/var/log/nginx/access.log \
--error-log-path=stderr \
--lock-path=/var/lock/nginx.lock \
--pid-path=/run/nginx.pid \
--modules-path=/usr/lib/nginx/modules \
--http-client-body-temp-path=/var/lib/nginx/body \
--http-fastcgi-temp-path=/var/lib/nginx/fastcgi \
--http-proxy-temp-path=/var/lib/nginx/proxy \
--http-scgi-temp-path=/var/lib/nginx/scgi \
--http-uwsgi-temp-path=/var/lib/nginx/uwsgi \
--with-compat \
--with-debug \
--with-pcre-jit \
--with-http_ssl_module \
--with-http_stub_status_module \
--with-http_realip_module \
--with-http_auth_request_module \
--with-http_v2_module \
--with-http_dav_module \
--with-http_slice_module \
--with-threads \
--with-http_addition_module \
--with-http_flv_module \
--with-http_gunzip_module \
--with-http_gzip_static_module \
--with-http_mp4_module \
--with-http_random_index_module \
--with-http_secure_link_module \
--with-http_sub_module \
--with-mail_ssl_module \
--with-stream_ssl_module \
--with-stream_ssl_preread_module \
--with-stream_realip_module \
--with-http_geoip_module=dynamic \
--with-http_image_filter_module=dynamic \
--with-http_perl_module=dynamic \
--with-http_xslt_module=dynamic \
--with-mail=dynamic \
--with-stream=dynamic \
--with-stream_geoip_module=dynamic
Usando grep
para pesquisar:
nginx -V 2>&1 | grep http_auth_basic_module
Resultado:
Not found
GitHub - /src/http/modules/ngx_http_auth_basic_module.c
Teste de configuração do NGINX
# info.nginx
location = "/info.nginx" {
auth_basic "Administrator's Area";
auth_basic_user_file /etc/nginx/.htpasswd;
access_log off;
default_type "application/json; charset=UTF-8";
return 200 '{"nginx_version":"$nginx_version","time":{"time_iso8601":"$time_iso8601","time_local":"$time_local","msec":"$msec"},"remote":{"remote_addr":"$remote_addr","remote_port":"$remote_port"},"host":{"host":"$host","hostname":"$hostname"},"server":{"server_addr":"$server_addr","server_name":"$server_name","server_port":"$server_port","server_protocol":"$server_protocol"},"request":{"request_time":"$request_time","request_method":"$request_method","request_uri":"$request_uri","request_filename":"$request_filename","uri":"$uri","query_string":"$query_string","realpath_root":"$realpath_root"},"document":{"document_root":"$document_root","document_uri":"$document_uri"}}';
}
Conforme mencionado anteriormente , de acordo com a descrição das fases de processamento de requisição do guia de desenvolvimento nginx , a
return
diretiva é executada durante oNGX_HTTP_REWRITE_PHASE
, enquanto asauth_...
diretivas entram em vigor durante o posteriorNGX_HTTP_ACCESS_PHASE
. Como alternativa, você pode usar atry_files
diretiva para pular para outro local durante o posteriorNGX_HTTP_PRECONTENT_PHASE
(veja esta resposta para detalhes):Além da resposta, posso dizer que se o nginx fosse realmente compilado sem o módulo de autenticação básico, sua configuração falharia na validação na inicialização e o nginx retornaria um erro como
nginx: [emerg] unknown directive "auth_basic" in ...
Alternativa - Usando um mapa para validar credenciais de autenticação básicas
Lógica:
$http_<header_name>
.Authorization
cabeçalho recebido do cliente se torna$http_authorization
.http{...}
contexto.Authorization
cabeçalho para uma variável chamada$auth_status
.Authorization
cabeçalho exato não estiver presente, o mapa será avaliado como"unauthorized"
.$auth_status
para proteger umlocation
bloco dentro doserver {...}
contexto:error_page
dentro doserver {...}
contexto e adicionamos oWWW-Authenticate
cabeçalho para acionar o prompt de login de autenticação básica do navegador.