From 65d724af8934ea718bd378d837dbcaa468f30e15 Mon Sep 17 00:00:00 2001
From: Remi  PLANEL <rplanel@pasteur.fr>
Date: Wed, 20 Sep 2023 13:02:08 +0200
Subject: [PATCH] remove alias

---
 nginx.conf | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/nginx.conf b/nginx.conf
index ac99c650..232a12a9 100644
--- a/nginx.conf
+++ b/nginx.conf
@@ -3,13 +3,13 @@ server {
     listen 8080;
     server_name localhost;
     location ^~/wiki/ {
-        alias /etc/nginx/html/;
+        root /etc/nginx/html/;
         index index.html index.htm;
 
     }
     error_page 500 502 503 504 /50x.html;
     location = /50x.html {
-        alias /etc/nginx/html/;
+        root /etc/nginx/html/;
     }
 
 }
\ No newline at end of file
-- 
GitLab