mirror of
https://github.com/M0r13n/mikrotik_monitoring.git
synced 2025-12-06 01:59:30 +00:00
22 lines
292 B
Text
22 lines
292 B
Text
server {
|
|
listen 80;
|
|
|
|
server_name 192.168.0.10;
|
|
|
|
# Your domain
|
|
return 302 https://192.168.0.10;
|
|
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
listen [::]:443 ssl;
|
|
include ssl/self-signed.conf;
|
|
|
|
# Your domain
|
|
server_name 192.168.0.10;
|
|
|
|
location / {
|
|
proxy_pass http://grafana:3000/;
|
|
}
|
|
}
|