From 1bac9a218e9b6149d46378c27b77bce19b81e379 Mon Sep 17 00:00:00 2001 From: Jason Ertel Date: Thu, 27 Aug 2026 16:28:00 -0400 Subject: [PATCH] fix well-known paths --- salt/nginx/etc/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/salt/nginx/etc/nginx.conf b/salt/nginx/etc/nginx.conf index f384caf94..5a787d96c 100644 --- a/salt/nginx/etc/nginx.conf +++ b/salt/nginx/etc/nginx.conf @@ -260,7 +260,7 @@ http { } {% if 'api' in salt['pillar.get']('features', []) %} - location ~* (^/oauth2/token.*|^.well-known/jwks.json|^.well-known/openid-configuration) { + location ~* (^/oauth2/token.*|^/\.well-known/jwks.json|^/\.well-known/openid-configuration) { limit_req zone=auth_throttle burst={{ NGINXMERGED.config.throttle_login_burst }} nodelay; limit_req_status 429; proxy_pass http://{{ GLOBALS.manager }}:4444;