forked from pi-hole/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
251 lines (242 loc) · 10 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
site_name: 'Pi-hole documentation'
site_url: 'https://docs.pi-hole.net/'
repo_url: 'https://github.com/pi-hole/pi-hole'
edit_uri: '../docs/blob/master/docs/'
copyright:
remote_branch: gh-pages
validation:
links:
anchors: warn
theme:
name: 'material'
custom_dir: overrides
# icon:
# repo: fontawesome/brands/github-alt
favicon: 'images/favicon.ico'
logo: 'images/logo.svg'
language: 'en'
font:
text: 'Source Sans Pro'
code: 'Roboto Mono'
features:
- navigation.top
- navigation.instant
- search.suggest
- search.highlight
- search.share
- content.action.edit
- content.code.copy
palette:
# Light mode
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/lightbulb-outline
name: Switch to dark mode
# Dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/lightbulb
name: Switch to light mode
markdown_extensions:
# Code highlighting in ``` ``` blocks
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#highlight
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.inlinehilite
# Table of Contents
# https://python-markdown.github.io/extensions/toc/
- toc:
permalink: true
# block-styled side content
# https://squidfunk.github.io/mkdocs-material/reference/admonitions/
- admonition
# https://squidfunk.github.io/mkdocs-material/setup/extensions/python-markdown-extensions/#details
- pymdownx.details
# linkifies URL and email links without having to wrap them in Markdown syntax. Also, allows shortens repository issue, pull request, and commit links.
- pymdownx.magiclink
# Task lists (https://facelessuser.github.io/pymdown-extensions/extensions/tasklist/)
- pymdownx.tasklist:
custom_checkbox: true
# Highlight words with ==mark me==
- pymdownx.mark
# Adds support for deletion ~~Delete me~~ and subscript text~a\ subscript~
- pymdownx.tilde
# This extension is a convenience extension which includes many pymdownx extensions
# (https://facelessuser.github.io/pymdown-extensions/extensions/extra/)
- pymdownx.extra
# Tabbed provides a syntax to easily add tabbed Markdown content.
# https://facelessuser.github.io/pymdown-extensions/extensions/tabbed/
- pymdownx.tabbed:
alternate_style: true
# Adds syntax for defining footnotes in Markdown documents (https://squidfunk.github.io/mkdocs-material/reference/footnotes/)
- footnotes
# Adds the ability to define abbreviations (https://squidfunk.github.io/mkdocs-material/reference/tooltips/)
- abbr
- attr_list
# Include files in other documents like {!some/dir/in/docs/filename.md!}
- markdown_include.include:
base_path: docs
- pymdownx.snippets:
# auto_append abbreviations.md to every file
# https://squidfunk.github.io/mkdocs-material/reference/tooltips/#adding-a-glossary
auto_append:
- docs/abbreviations.md
nav:
- Overview: index.md
- 'About Pi-hole':
- 'Contact Us': main/contact.md
- 'Pi-hole Origins': main/origins.md
- 'On the Web': main/coverage.md
- 'Getting Started':
- 'Prerequisites': main/prerequisites.md
- 'Installation': main/basic-install.md
- 'Post-Install': main/post-install.md
- 'Updating': main/update.md
- 'Uninstalling': main/uninstall.md
- 'Pi-hole Core':
- 'The  <samp>pihole</samp>  command': core/pihole-command.md
- 'Databases':
- 'Overview': database/index.md
- 'Query database': database/ftl.md
- 'Domain database':
- 'Overview': database/gravity/index.md
- 'Group management': database/gravity/groups.md
- 'Database recovery': database/gravity/recovery.md
- 'FTLDNS':
- 'Overview': ftldns/index.md
- 'Configuration': ftldns/configfile.md
- 'Interfaces': ftldns/interfaces.md
- 'DNS resolver': ftldns/dns-resolver.md
- 'DNS cache': ftldns/dns-cache.md
- 'Blocking mode': ftldns/blockingmode.md
- 'Privacy levels': ftldns/privacylevels.md
- 'dnsmasq warnings': ftldns/dnsmasq_warn.md
- 'Advanced':
- 'Install from source': ftldns/compile.md
- 'Telnet API': ftldns/telnet-api.md
- 'Signals': 'ftldns/signals.md'
- 'Cache dump': ftldns/cache_dump.md
- 'Packet dump': ftldns/package_dump.md
- 'Debugging':
- 'gdb': ftldns/debugging.md
- 'valgrind': ftldns/valgrind.md
- 'In-depth manual': ftldns/in-depth.md
- 'Group management':
- 'Overview': group_management/groups.md
- 'Examples': group_management/example.md
- 'RegEx blocking':
- "Overview": regex/overview.md
- "Testing": regex/testmode.md
- "Tutorial": regex/tutorial.md
- "Pi-hole extensions": regex/pi-hole.md
- "Approximate matching": regex/approximate.md
- 'Docker':
- 'DHCP': docker/DHCP.md
- 'Contributing':
- 'Contributing on GitHub': guides/github/contributing.md
- 'Developer Certificate of Origin (DCO)': guides/github/dco.md
- 'How to sign-off commits': guides/github/how-to-signoff.md
- 'How to fork and rebase': guides/github/how-to-fork-rebase.md
- 'Guides':
- 'DNS':
- 'unbound': guides/dns/unbound.md
- 'cloudflared (DoH)': guides/dns/cloudflared.md
- 'Upstream DNS Providers': guides/dns/upstream-dns-providers.md
- 'VPN':
- 'WireGuard':
- 'Overview': guides/vpn/wireguard/overview.md
- 'Concept': guides/vpn/wireguard/concept.md
- 'Install server': guides/vpn/wireguard/server.md
- 'Add client(s)': guides/vpn/wireguard/client.md
- 'Optional extra features':
- 'Make local devices accessible': guides/vpn/wireguard/internal.md
- 'Tunnel all Internet traffic': guides/vpn/wireguard/route-everything.md
- 'Troubleshooting': guides/vpn/wireguard/faq.md
- 'OpenVPN':
- 'Overview': guides/vpn/openvpn/overview.md
- 'Installation': guides/vpn/openvpn/installation.md
- 'Setup OpenVPN Server': guides/vpn/openvpn/setup-openvpn-server.md
- 'Firewall Configuration': guides/vpn/openvpn/firewall.md
- 'Connecting clients':
- 'General': guides/vpn/openvpn/clients.md
- 'Android': guides/vpn/openvpn/android-client.md
- 'Optional: Only route DNS via VPN': guides/vpn/openvpn/only-dns-via-vpn.md
- 'Optional: Dual operation: LAN & VPN at the same time': guides/vpn/openvpn/dual-operation.md
- 'Optional: Full and DNS-only': guides/vpn/openvpn/dual-VPN.md
- 'Optional: Dynamic DNS': guides/vpn/openvpn/dynDNS.md
- 'Troubleshooting': guides/vpn/openvpn/troubleshooting.md
- 'Misc':
- 'Benchmarking': guides/misc/benchmark.md
- 'Tor & Pi-hole':
- 'Overview': guides/misc/tor/overview.md
- 'Basic Setup': guides/misc/tor/setup.md
- 'Using Tor': guides/misc/tor/using-tor.md
- 'Performance and other issues': guides/misc/tor/performance-issues.md
- 'Using DNSSEC': guides/misc/tor/dnssec.md
- 'Whitelist and Blacklist editing': guides/misc/whitelist-blacklist.md
- 'Web server':
- 'NGINX': guides/webserver/nginx.md
- 'Caddy': guides/webserver/caddy.md
- 'Traefik v1 (not in Docker)': guides/webserver/traefik-nodocker.md
- 'Traefik v2 (with Docker)': guides/webserver/traefik-v2-docker.md
- 'Router setup':
- 'ASUS router': routers/asus.md
- 'Fritz!Box (EN)': routers/fritzbox.md
- 'Fritz!Box (DE)': routers/fritzbox-de.md
- 'Nokia G-240W-B': routers/nokia-G240WB.md
- 'TP-Link': routers/tp-link.md
- 'Ubiquiti USG': routers/ubiquiti-usg.md
- 'FAQ': main/faq.md
- 'Community Projects': main/projects.md
extra:
social:
- icon: fontawesome/solid/earth-americas
link: https://pi-hole.net/
name: Website
- icon: fontawesome/brands/github
link: https://github.com/pi-hole
name: GitHub
extra_css:
- extra.css
plugins:
- search
- git-revision-date-localized
- redirects:
redirect_maps:
'ftldns/database.md': database/index.md
'main/presentations.md': index.md
'main/prerequesites.md': main/prerequisites.md
'guides/unbound.md': guides/dns/unbound.md
'guides/upstream-dns-providers.md': guides/dns/upstream-dns-providers.md
'guides/dns-over-https.md': guides/dns/cloudflared.md
'guides/vpn/overview.md': guides/vpn/openvpn/overview.md
'guides/vpn/installation.md': guides/vpn/openvpn/installation.md
'guides/vpn/setup-openvpn-server.md': guides/vpn/openvpn/setup-openvpn-server.md
'guides/vpn/firewall.md': guides/vpn/openvpn/firewall.md
'guides/vpn/clients.md': guides/vpn/openvpn/clients.md
'guides/vpn/android-client.md': guides/vpn/openvpn/android-client.md
'guides/vpn/only-dns-via-vpn.md': guides/vpn/openvpn/only-dns-via-vpn.md
'guides/vpn/dual-operation.md': guides/vpn/openvpn/dual-operation.md
'guides/vpn/dual-VPN.md': guides/vpn/openvpn/dual-VPN.md
'guides/vpn/dynDNS.md': guides/vpn/openvpn/dynDNS.md
'guides/vpn/troubleshooting.md': guides/vpn/openvpn/troubleshooting.md
'guides/benchmark.md': guides/misc/benchmark.md
'guides/tor/overview.md': guides/misc/tor/overview.md
'guides/tor/setup.md': guides/misc/tor/setup.md
'guides/tor/using-tor.md': guides/misc/tor/using-tor.md
'guides/tor/performance-issues.md': guides/misc/tor/performance-issues.md
'guides/tor/dnssec.md': guides/misc/tor/dnssec.md
'guides/whitelist-blacklist.md': guides/misc/whitelist-blacklist.md
'guides/nginx-configuration.md': 'guides/webserver/nginx.md'
'guides/caddy-configuration.md': 'guides/webserver/caddy.md'
'guides/traefik-configuration-nodocker.md': 'guides/webserver/traefik-nodocker.md'
'ftldns/regex/index.md': regex/overview.md
'ftldns/regex/overview.md': regex/overview.md
'ftldns/regex/tutorial.md': regex/tutorial.md
'database/gravity/example.md': group_management/example.md