feat: custom
All checks were successful
Docker Image CI / build-and-push (push) Successful in 4m6s

This commit is contained in:
2026-05-02 16:57:21 -04:00
Verified
parent c1b821de0f
commit 7a41e74e66
10 changed files with 178 additions and 26 deletions

17
nginx.conf Normal file
View File

@@ -0,0 +1,17 @@
server {
listen 8080;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location = /health {
access_log off;
add_header Content-Type text/plain;
return 200 "ok\n";
}
}