Expose Grafana on port 3005 and add Traefik route with Anubis auth
This commit is contained in:
parent
35e5b04ad8
commit
058fc0b667
2 changed files with 18 additions and 1 deletions
|
|
@ -212,6 +212,15 @@ in {
|
|||
tls = {};
|
||||
middlewares = ["anubisForwardAuth"];
|
||||
};
|
||||
|
||||
# Protected service: Grafana
|
||||
grafana = {
|
||||
rule = "Host(`grafana.prg-radio.org`)";
|
||||
service = "grafana";
|
||||
entryPoints = ["websecure"];
|
||||
tls = {};
|
||||
middlewares = ["anubisForwardAuth"];
|
||||
};
|
||||
};
|
||||
|
||||
http.services = {
|
||||
|
|
@ -243,6 +252,12 @@ in {
|
|||
{url = "http://10.1.1.249:8087";}
|
||||
];
|
||||
};
|
||||
|
||||
grafana.loadBalancer = {
|
||||
servers = [
|
||||
{url = "http://10.1.1.10:3005";}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
# TCP routing for TeamSpeak
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue