From 614733ef64f7449591b312a27e010237a093233f Mon Sep 17 00:00:00 2001 From: adb-sh Date: Thu, 5 Jan 2023 00:04:12 +0100 Subject: [PATCH] debug nginx --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index a89bb33..9f469a7 100644 --- a/nginx.conf +++ b/nginx.conf @@ -28,12 +28,12 @@ http { location / { index index.html; root /var/www/html; - try_files $uri $uri/; + try_files $uri $uri/ =404; absolute_redirect off; } location =/ { - return 302 https://webdesign-befmp.deploy.cat; + return 302 https://webdesign-befmp.deploy.cat/screens/home.html; } } }