Add Dockerfile deployment for Coolify

This commit is contained in:
2026-07-07 19:23:38 +02:00
parent 4d46ef287a
commit bc98dd0cb5
6 changed files with 177 additions and 174 deletions
+17
View File
@@ -0,0 +1,17 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
location ~* \.(?:css|js|jpg|jpeg|png|webp|svg|ico|pdf|woff2?)$ {
expires 30d;
add_header Cache-Control "public, immutable";
try_files $uri =404;
}
}