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

15 lines
262 B
Nginx Configuration File

server {
listen 80;
charset utf-8;
location / {
root /usr/share/nginx/html;
index index.html;
add_header Content-Type "text/html; charset=utf-8";
}
location /api/ {
proxy_pass http://collector:8080/;
}
}