-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
mkdocs.yml
59 lines (59 loc) · 1.84 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
site_name: STUNner
repo_url: https://github.com/l7mp/stunner
repo_name: STUNner
site_description: "Documentation of STUNner"
site_author: L7mp Technologies Kft.
copyright: L7mp Technologies Kft.
use_directory_urls: true
theme:
name: readthedocs
highlightjs: true
nav:
- 'Why STUNner': 'WHY.md'
- 'Deployment models': 'DEPLOYMENT.md'
- 'Concepts': 'CONCEPTS.md'
- 'Installation': 'INSTALL.md'
- 'Gateway API reference': 'GATEWAY.md'
- 'Security': 'SECURITY.md'
- 'Authentication': 'AUTH.md'
- 'Scaling': 'SCALING.md'
- 'Monitoring': 'MONITORING.md'
- 'Examples':
- 'Configuring TLS for examples': 'examples/TLS.md'
- 'UDP echo': 'examples/udp-echo/README.md'
- 'Simple tunnel': 'examples/simple-tunnel/README.md'
- 'Direct one to one call': 'examples/direct-one2one-call/README.md'
- 'LiveKit': 'examples/livekit/README.md'
- 'Janus': 'examples/janus/README.md'
- 'Elixir WebRTC': 'examples/elixir-webrtc/README.md'
- 'Jitsi': 'examples/jitsi/README.md'
- 'mediasoup': 'examples/mediasoup/README.md'
- 'CloudRetro': 'examples/cloudretro/README.md'
- 'N.eko': 'examples/neko/README.md'
- 'Kurento one to one call': 'examples/kurento-one2one-call/README.md'
- 'Kurento Magic Mirror': 'examples/kurento-magic-mirror/README.md'
- 'Benchmark': 'examples/benchmark/README.md'
- 'CMD':
- 'stunnerctl': 'cmd/stunnerctl.md'
- 'stunnerd': 'cmd/stunnerd.md'
- 'turncat': 'cmd/turncat.md'
plugins:
- search
- mkdocstrings:
handlers:
# See: https://mkdocstrings.github.io/python/usage/
python:
options:
docstring_style: sphinx
markdown_extensions:
- markdown_include.include:
base_path: .
- admonition
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- gfm_admonition