docker improvements

This commit is contained in:
dragongoose
2024-02-19 12:03:22 -05:00
parent 2d905e7c93
commit 9876a67a18
2 changed files with 10 additions and 20 deletions

View File

@ -4,14 +4,14 @@ http {
server {
listen 8280;
access_log off;
error_log off;
access_log /dev/null;
error_log /dev/null;
location / {
root /app;
index index.html;
try_files $uri $uri/ /index.html;
}
location / {
root /app;
index index.html;
try_files $uri $uri/ /index.html;
}
}
}