-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.js
More file actions
98 lines (94 loc) · 2.46 KB
/
sidebars.js
File metadata and controls
98 lines (94 loc) · 2.46 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
/**
* Sidebar configuration for 8Labs documentation
*/
// @ts-check
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
const sidebars = {
tutorialSidebar: [
// Introduction at the top
'intro',
// All categories in order
{
type: 'category',
label: 'Cloud 8Labs 101',
link: {
type: 'generated-index',
description: 'Getting started with Cloud 8Labs services',
},
items: [{type: 'autogenerated', dirName: 'cloudlabs-101'}],
},
{
type: 'category',
label: 'Caddy',
link: {
type: 'generated-index',
description: 'How to use, configure and deploy Caddy as a web server',
},
items: [{type: 'autogenerated', dirName: 'caddy-101'}],
},
{
type: 'category',
label: 'VMware',
link: {
type: 'generated-index',
description: 'VMware ESXi administration and management',
},
items: [{type: 'autogenerated', dirName: 'VMware'}],
},
{
type: 'category',
label: 'Proxmox',
link: {
type: 'generated-index',
description: 'Proxmox VE tutorials and troubleshooting',
},
items: [{type: 'autogenerated', dirName: 'proxmox'}],
},
{
type: 'category',
label: 'XCP-ng',
link: {
type: 'generated-index',
description: 'XCP-ng deployment, hardening, and VMware coexistence',
},
items: [{type: 'autogenerated', dirName: 'XCP-ng'}],
},
{
type: 'category',
label: 'Rocky Linux',
link: {
type: 'generated-index',
description: 'Enterprise Linux configuration and best practices',
},
items: [{type: 'autogenerated', dirName: 'rocky-linux'}],
},
{
type: 'category',
label: 'WireGuard',
link: {
type: 'generated-index',
description: 'WireGuard VPN setup and configuration',
},
items: [{type: 'autogenerated', dirName: 'wireguard'}],
},
{
type: 'category',
label: 'Git',
link: {
type: 'generated-index',
description: 'Git workflows and best practices',
},
items: [{type: 'autogenerated', dirName: 'git'}],
},
{
type: 'category',
label: 'Coolify',
link: {
type: 'generated-index',
description: 'Coolify deployment platform guides and tutorials',
},
items: [{type: 'autogenerated', dirName: 'coolify'}],
},
],
};
export default sidebars;