From d6b5280227322dedc312b4cdb44e831514d11dfb Mon Sep 17 00:00:00 2001 From: Adriano Caloiaro Date: Mon, 2 Dec 2024 08:13:03 -0700 Subject: [PATCH] remove trailing slash --- nginx.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nginx.conf b/nginx.conf index 34ef210..86371dd 100644 --- a/nginx.conf +++ b/nginx.conf @@ -13,11 +13,11 @@ http { default_type application/octet-stream; server { - listen 3000; + listen 0.0.0.0:3000; location / { root /home/static/public; - try_files $uri $uri/ =404; + try_files $uri $uri/index.html $uri/ =404; } } types {