From 55c40a84f10814b78e35ea539ceb710e2a442045 Mon Sep 17 00:00:00 2001 From: Remi PLANEL <rplanel@pasteur.fr> Date: Tue, 26 Sep 2023 14:38:29 +0200 Subject: [PATCH] remove trailing slash for alias --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index cc2affd6..152225ae 100644 --- a/nginx.conf +++ b/nginx.conf @@ -3,7 +3,7 @@ server { listen 8080; server_name localhost; location /wiki { - alias /etc/nginx/html/; + alias /etc/nginx/html; index index.html index.htm; } -- GitLab