build: add frontend container image

This commit is contained in:
2026-07-14 19:40:36 +08:00
parent b8582ba3e9
commit 6c1af1fd05
3 changed files with 34 additions and 0 deletions

11
web/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 $uri/ /index.html;
}
}