This commit is contained in:
2026-03-19 16:12:22 +07:00
parent 39b0358b08
commit b7e8450357
11 changed files with 101 additions and 68 deletions

17
frontend/nginx.conf Normal file
View File

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