From cc8a9009e9d43221ace7927abd3d9213714f921f Mon Sep 17 00:00:00 2001 From: Kgraessle Date: Fri, 6 Dec 2024 13:45:58 -0600 Subject: [PATCH] Fix the directive location to be nested so that it inherits parent directive configuration Bug: T370901 --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index ab1c512..aca3f0d 100644 --- a/nginx.conf +++ b/nginx.conf @@ -75,7 +75,7 @@ server { return 403; } location /admin/links/ { - try_files $uri @django-admin-slow + try_files $uri @django-admin-slow; } # checks for static file, if not found proxy to app try_files $uri @django;