deploy(core): add dockerfile and compose (and deploy)

This commit is contained in:
2025-10-07 14:37:47 +02:00
parent b482baf56d
commit 3a3b331092
4 changed files with 69 additions and 0 deletions

11
nginx.conf Normal file
View File

@@ -0,0 +1,11 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri /index.html;
}
}