From 760bcf6c94fbf2b9306858ef8218334126c56176 Mon Sep 17 00:00:00 2001 From: Nikita Tokarchuk Date: Sat, 11 Dec 2021 02:41:17 +0100 Subject: [PATCH] Nginx proxy pass the root url --- nginx/nginx.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nginx/nginx.conf b/nginx/nginx.conf index c1c02c7..561ccf2 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -38,6 +38,10 @@ http { try_files $uri $uri/ @frontend; } + location = / { + proxy_pass http://frontend; + } + location @frontend { proxy_pass http://frontend; }