This commit is contained in:
root
2026-05-02 18:16:56 +00:00
parent b86aba7bcc
commit 0b394c9bae
9 changed files with 2095 additions and 0 deletions

12
web/nginx.conf~ Normal file
View File

@@ -0,0 +1,12 @@
server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html;
}
location /api/ {
proxy_pass http://collector:8080/;
}
}