15 lines
262 B
Nginx Configuration File
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/;
|
|
}
|
|
}
|