From 7daaf7808a921d342cf2650cb001727bee7d8145 Mon Sep 17 00:00:00 2001 From: Adam Bem Date: Tue, 20 Jun 2023 12:36:24 +0200 Subject: [PATCH] Fixed URL resolving --- Frontend/nginx.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/Frontend/nginx.conf b/Frontend/nginx.conf index 74e93e6..f2d3d8d 100644 --- a/Frontend/nginx.conf +++ b/Frontend/nginx.conf @@ -8,6 +8,7 @@ server { location / { root /usr/share/nginx/html; index index.html index.htm; + try_files $uri $uri/ /index.html; expires -1; add_header Cache-Control "private, no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0"; }