fix deploy
This commit is contained in:
parent
a19765f55a
commit
55b3a38b13
2 changed files with 8 additions and 2 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -26,3 +26,6 @@ coverage
|
|||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
||||
docker-compose.yaml
|
||||
.dockerignore
|
||||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue