aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/customservices.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/customservices.md')
-rw-r--r--docs/customservices.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/customservices.md b/docs/customservices.md
index 3b3320d..ab2b015 100644
--- a/docs/customservices.md
+++ b/docs/customservices.md
@@ -113,3 +113,24 @@ For Prometheus you need to set the type to Prometheus and provide a url.
113 url: "http://192.168.0.151/" 113 url: "http://192.168.0.151/"
114 # subtitle: "Monitor data server" 114 # subtitle: "Monitor data server"
115``` 115```
116
117## AdGuard Home
118For AdGuard Home you need to set the type to AdGuard, if you have somes issues as 403 responses on requests you need to provide authentification in headers for locations needed as below.
119In `config.yml`
120```yaml
121- name: "Adguard"
122 logo: "assets/tools/adguardhome.png"
123 url: "https://adguard.exemple.com"
124 target: "_blank"
125 type: "AdGuardHome"
126```
127In your conf files for your AdGuard Home instance
128```
129location /control/stats {
130 proxy_set_header Authorization "Basic [admin:password in Base64]";
131}
132
133location /control/status {
134 proxy_set_header Authorization "Basic [admin:password in Base64]";
135}
136``` \ No newline at end of file