diff options
author | Darkham <6454197+Darkham42@users.noreply.github.com> | 2021-10-27 21:53:39 +0200 |
---|---|---|
committer | Darkham <6454197+Darkham42@users.noreply.github.com> | 2021-10-27 21:53:39 +0200 |
commit | 6e6efc7d2994f9e39ad4060abe05e1ce25c721cc (patch) | |
tree | cba0e504281a88e2960a58b65a23e66994d485ba | |
parent | b7480f632e65b0434c2acc63a171db7a99c7abc4 (diff) | |
download | homer-6e6efc7d2994f9e39ad4060abe05e1ce25c721cc.tar.gz homer-6e6efc7d2994f9e39ad4060abe05e1ce25c721cc.tar.zst homer-6e6efc7d2994f9e39ad4060abe05e1ce25c721cc.zip |
doc: add doc for AdGuard Home
-rw-r--r-- | docs/customservices.md | 21 |
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 | ||
118 | For 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. | ||
119 | In `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 | ``` | ||
127 | In your conf files for your AdGuard Home instance | ||
128 | ``` | ||
129 | location /control/stats { | ||
130 | proxy_set_header Authorization "Basic [admin:password in Base64]"; | ||
131 | } | ||
132 | |||
133 | location /control/status { | ||
134 | proxy_set_header Authorization "Basic [admin:password in Base64]"; | ||
135 | } | ||
136 | ``` \ No newline at end of file | ||