From 82ad831b8364cd805bb468b5d87e1449c5b46447 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Mon, 26 Jun 2023 16:09:04 +0100 Subject: [PATCH] Update nginx conf for /misc/ route --- conf/nginx.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index 83b7b0b..12f9809 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -45,6 +45,10 @@ http { add_header Cache-Control "public, no-transform, max-age=1209600"; } + location /misc/ { + proxy_pass http://backend; + } + location /api/ { proxy_pass http://backend; proxy_cache_key $scheme://$host$uri$is_args$query_string;