Files
heardlog/web/nginx.conf~
2026-05-02 18:16:56 +00:00

13 lines
183 B
Nginx Configuration File

server {
listen 80;
location / {
root /usr/share/nginx/html;
index index.html;
}
location /api/ {
proxy_pass http://collector:8080/;
}
}