From ed320166cb2ec4cbcc79d8cced8c7d1469e8dae6 Mon Sep 17 00:00:00 2001 From: waruneeauy Date: Fri, 26 Dec 2025 17:21:33 +0700 Subject: [PATCH] fix test --- docker/nginx.conf | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docker/nginx.conf b/docker/nginx.conf index 461bc028..4cca8336 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -18,12 +18,14 @@ http { listen 80; server_name localhost; location / { - return 301 /manual/; - } - location /manual/ { - alias /app/; + root /app; + # return 301 /manual/; + # } + # location /manual/ { + # alias /app/; index index.html; - try_files $uri $uri/ /manual/index.html; + try_files $uri $uri/ /index.html; + # try_files $uri $uri/ /manual/index.html; } error_page 500 502 503 504 /50x.html; location = /50x.html {