From 97a3f073043da7ec30c02eb7a3c81ed3e735596c Mon Sep 17 00:00:00 2001 From: Aevann Date: Sun, 10 Mar 2024 20:58:43 +0200 Subject: [PATCH] nginx force exact --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index a3831bc40c..1ba89b1d00 100644 --- a/nginx.conf +++ b/nginx.conf @@ -20,11 +20,11 @@ server { proxy_pass http://localhost:5001/socket.io; include includes/headers; } - location /chat { + location =/chat { proxy_pass http://localhost:5001/chat; include includes/headers; } - location /reply { + location =/reply { proxy_pass http://localhost:5001/reply; include includes/headers; }