fix deploy

This commit is contained in:
Warunee Tamkoo 2025-09-03 14:59:21 +07:00
parent a19765f55a
commit 55b3a38b13
2 changed files with 8 additions and 2 deletions

3
.gitignore vendored
View file

@ -26,3 +26,6 @@ coverage
*.njsproj
*.sln
*.sw?
docker-compose.yaml
.dockerignore

View file

@ -18,9 +18,12 @@ http {
listen 80;
server_name localhost;
location / {
root /app;
return 301 /manual/;
}
location /manual/ {
alias /app/;
index 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 {