docker compose

This commit is contained in:
2026-01-21 22:05:21 +00:00
parent 0df0baf822
commit 0f764b1239
3 changed files with 39 additions and 7 deletions

14
geradoresfe/nginx.conf Normal file
View File

@@ -0,0 +1,14 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
# Optional: gzip
gzip on;
gzip_types text/plain application/javascript text/css application/json image/svg+xml;
}