This commit is contained in:
Warunee Tamkoo 2025-12-26 17:21:33 +07:00
parent cb999562bb
commit ed320166cb

View file

@ -18,12 +18,14 @@ http {
listen 80; listen 80;
server_name localhost; server_name localhost;
location / { location / {
return 301 /manual/; root /app;
} # return 301 /manual/;
location /manual/ { # }
alias /app/; # location /manual/ {
# alias /app/;
index index.html; 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; error_page 500 502 503 504 /50x.html;
location = /50x.html { location = /50x.html {