-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
126 lines (121 loc) · 3.23 KB
/
mkdocs.yml
File metadata and controls
126 lines (121 loc) · 3.23 KB
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
site_name: TCPMux
site_description: TCPMux - A TCP traffic multiplexer written in Go
repo_url: https://github.com/eWloYW8/TCPMux
repo_name: TCPMux
theme:
name: material
icon:
logo: material/server-outline
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
primary: indigo
accent: indigo
toggle:
icon: material/weather-night
name: switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
primary: indigo
accent: indigo
toggle:
icon: material/weather-sunny
name: switch to light mode
language: zh
features:
- navigation.tabs
- navigation.top
- search.suggest
- content.code.copy
- content.action.edit
nav:
- Home: 'index.md'
- Getting Started:
- Quick Start: 'getting_started/quickstart.md'
- Installation: 'getting_started/installation.md'
- Configuration:
- Overview: 'configuration/index.md'
- Listen: 'configuration/listen.md'
- Rules: 'configuration/rules.md'
- Logging: 'configuration/logging.md'
- TLS: 'configuration/tls.md'
- Controller: 'configuration/controller.md'
- Matchers:
- Overview: 'matchers/index.md'
- Default: 'matchers/default.md'
- Regex: 'matchers/regex.md'
- Substring: 'matchers/substring.md'
- TLS: 'matchers/tls.md'
- HTTP 1.1: 'matchers/http.md'
- SSH: 'matchers/ssh.md'
- SOCKS5: 'matchers/socks5.md'
- Trojan: 'matchers/trojan.md'
- IP CIDR: 'matchers/ip.md'
- Port: 'matchers/port.md'
- Timeout: 'matchers/timeout.md'
- Logic (AND/OR): 'matchers/logic.md'
- Handlers:
- Overview: 'handlers/index.md'
- Passthrough: 'handlers/passthrough.md'
- Reverse Proxy: 'handlers/reverse_proxy.md'
- WebServer: 'handlers/webserver.md'
- SOCKS5 Server: 'handlers/socks5.md'
- Trojan Server: 'handlers/trojan.md'
- Contribution:
- Architecture: 'contribution/index.md'
- Matcher: 'contribution/matcher.md'
- Handler: 'contribution/handler.md'
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- admonition
- def_list
- footnotes
- abbr
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- md_in_html
- pymdownx.arithmatex:
generic: true
- toc:
permalink: true
toc_depth: 3
- pymdownx.highlight:
anchor_linenums: true
linenums: true
use_pygments: true
pygments_lang_class: true
linenums_style: pymdownx-inline
- pymdownx.betterem
- pymdownx.caret
- pymdownx.mark
- pymdownx.tilde
- pymdownx.keys
- pymdownx.critic
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.magiclink
- pymdownx.smartsymbols
- pymdownx.snippets
- pymdownx.tasklist:
custom_checkbox: true
- attr_list
- pymdownx.emoji
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
combine_header_slug: true
- pymdownx.tasklist:
custom_checkbox: true
clickable_checkbox: true
- meta
- tables
plugins:
- search
- minify:
minify_html: true
minify_js: true
minify_css: true