mirror of
https://github.com/M0r13n/mikrotik_monitoring.git
synced 2025-12-06 10:09:31 +00:00
9 lines
140 B
Nginx Configuration File
9 lines
140 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
root /usr/share/nginx/html;
|
|
index index.html index.htm;
|
|
|
|
location / {
|
|
proxy_pass http://grafana:3000/;
|
|
}
|
|
}
|