-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
96 lines (86 loc) · 3.5 KB
/
sidebars.ts
File metadata and controls
96 lines (86 loc) · 3.5 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
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
greywallSidebar: [
{type: 'doc', id: 'greywall/index', label: 'Overview'},
{type: 'doc', id: 'greywall/quickstart', label: 'Quickstart'},
{
type: 'category',
label: 'Concepts',
collapsed: false,
items: [
{type: 'doc', id: 'greywall/why-greywall', label: 'Why Greywall?'},
{type: 'doc', id: 'greywall/concepts', label: 'Core Concepts'},
{type: 'doc', id: 'greywall/architecture', label: 'Architecture'},
{type: 'doc', id: 'greywall/security-model', label: 'Security Model'},
{type: 'doc', id: 'greywall/linux-security-features', label: 'Linux Security Features'},
{type: 'doc', id: 'greywall/platform-support', label: 'Platform Support'},
],
},
{
type: 'category',
label: 'Guides',
collapsed: false,
items: [
{type: 'doc', id: 'greywall/learning-mode', label: 'Learning Mode'},
{type: 'doc', id: 'greywall/agents', label: 'AI Agent Integration'},
{type: 'doc', id: 'greywall/credential-protection', label: 'Credential Protection'},
{type: 'doc', id: 'greywall/troubleshooting', label: 'Troubleshooting'},
{type: 'doc', id: 'greywall/faq', label: 'FAQ'},
],
},
{
type: 'category',
label: 'Reference',
collapsed: false,
items: [
{type: 'doc', id: 'greywall/cli-reference', label: 'CLI Reference'},
{type: 'doc', id: 'greywall/configuration', label: 'Configuration'},
{type: 'doc', id: 'greywall/templates', label: 'Config Profiles'},
{type: 'doc', id: 'greywall/library', label: 'Go Library'},
{type: 'doc', id: 'greywall/benchmarking', label: 'Benchmarking'},
{type: 'doc', id: 'greywall/testing', label: 'Testing'},
],
},
{type: 'doc', id: 'greywall/contributing', label: 'Contributing'},
],
greyproxySidebar: [
{type: 'doc', id: 'greyproxy/index', label: 'Overview'},
{type: 'doc', id: 'greyproxy/quickstart', label: 'Quickstart'},
{
type: 'category',
label: 'Concepts',
collapsed: false,
items: [
{type: 'doc', id: 'greyproxy/architecture', label: 'Architecture'},
],
},
{
type: 'category',
label: 'Guides',
collapsed: false,
items: [
{type: 'doc', id: 'greyproxy/using-with-greywall', label: 'Using with Greywall'},
{type: 'doc', id: 'greyproxy/dashboard', label: 'Dashboard'},
{type: 'doc', id: 'greyproxy/tls-interception', label: 'TLS Interception (MITM)'},
{type: 'doc', id: 'greyproxy/conversations', label: 'LLM Conversations'},
{type: 'doc', id: 'greyproxy/credentials', label: 'Credential Substitution'},
{type: 'doc', id: 'greyproxy/header-redaction', label: 'Header Redaction'},
{type: 'doc', id: 'greyproxy/silent-mode', label: 'Silent Mode'},
{type: 'doc', id: 'greyproxy/troubleshooting', label: 'Troubleshooting'},
],
},
{
type: 'category',
label: 'Reference',
collapsed: false,
items: [
{type: 'doc', id: 'greyproxy/cli-reference', label: 'CLI Reference'},
{type: 'doc', id: 'greyproxy/configuration', label: 'Configuration'},
{type: 'doc', id: 'greyproxy/rules', label: 'Rules'},
{type: 'doc', id: 'greyproxy/api', label: 'REST API'},
{type: 'doc', id: 'greyproxy/control-websocket', label: 'Control WebSocket'},
],
},
],
};
export default sidebars;