From 3f1b889961ba55fc75e2c116d6977d35d523af3f Mon Sep 17 00:00:00 2001 From: valitovgaziz Date: Sat, 19 Jul 2025 03:04:16 +0300 Subject: [PATCH] modified: nginx/nginx-ssl.conf Add try_files $uri $uri/ /index.html; to nginx-ssl.conf --- nginx/nginx-ssl.conf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nginx/nginx-ssl.conf b/nginx/nginx-ssl.conf index 9fbe2ab..c64a8a2 100644 --- a/nginx/nginx-ssl.conf +++ b/nginx/nginx-ssl.conf @@ -21,6 +21,7 @@ server { location / { root /usr/share/nginx/html; index index.html; + try_files $uri $uri/ /index.html; } location /auth { @@ -47,5 +48,6 @@ server { location / { root /usr/share/nginx/valitovgaziz/html; index index.html; + try_files $uri $uri/ /index.html; } }