mikrotik_monitoring/nginx/nginx.conf
2022-08-05 15:59:26 +02:00

9 lines
135 B
Nginx Configuration File

server {
listen 80;
listen [::]:80;
location / {
proxy_set_header Host $http_host;
proxy_pass http://grafana:3000/;
}
}