Files
heardlog/web/nginx.conf
2026-05-03 06:39:58 +00:00

16 lines
288 B
Nginx Configuration File

server {
listen 80;
charset utf-8;
source_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/;
}
}