mikrotik_monitoring/nginx/nginx.conf

10 lines
135 B
Nginx Configuration File
Raw Permalink Normal View History

2022-06-30 14:42:47 +02:00
server {
listen 80;
2022-06-30 15:04:23 +02:00
listen [::]:80;
2022-06-30 14:42:47 +02:00
location / {
2022-08-05 15:50:18 +02:00
proxy_set_header Host $http_host;
2022-06-30 14:42:47 +02:00
proxy_pass http://grafana:3000/;
}
}