-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsidebars.ts
119 lines (117 loc) · 2.97 KB
/
sidebars.ts
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
import { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
tutorialSidebar: [
"getting_started",
{
type: "link",
label: "imgproxy Pro",
href: "https://imgproxy.net#pro",
className: "menu__list-item--badge badge--pro",
},
"installation",
{
type: "category",
label: "Configuration",
link: {
type: "generated-index",
description: "Learn about how to configure imgproxy",
},
items: [
"configuration/options",
"configuration/loading_environment_variables",
],
},
{
type: "category",
label: "Usage",
link: {
type: "generated-index",
description:
"Learn about how to use imgproxy to process images or get images info",
},
items: [
"usage/processing",
{
type: "doc",
id: "usage/getting_info",
className: "menu__list-item--badge badge--pro",
},
"usage/signing_url",
{
type: "doc",
id: "usage/encrypting_source_url",
className: "menu__list-item--badge badge--pro",
},
"usage/presets",
],
},
{
type: "category",
label: "Features",
link: {
type: "generated-index",
description: "Learn about imgproxy features",
},
items: [
"features/watermark",
{
type: "doc",
id: "features/object_detection",
className: "menu__list-item--badge badge--pro",
},
{
type: "doc",
id: "features/autoquality",
className: "menu__list-item--badge badge--pro",
},
{
type: "doc",
id: "features/best_format",
className: "menu__list-item--badge badge--pro",
},
{
type: "doc",
id: "features/chained_pipelines",
className: "menu__list-item--badge badge--pro",
},
],
},
{
type: "category",
label: "Image sources",
link: {
type: "generated-index",
description:
"Learn about how to configure imgproxy to serve images from various sources",
},
items: [
"image_sources/local_files",
"image_sources/amazon_s3",
"image_sources/google_cloud_storage",
"image_sources/azure_blob_storage",
"image_sources/openstack_swift",
],
},
{
type: "category",
label: "Monitoring",
link: {
type: "generated-index",
description:
"Learn about how to configure monitoring of your imgproxy instances",
},
items: [
"monitoring/new_relic",
"monitoring/prometheus",
"monitoring/datadog",
"monitoring/open_telemetry",
"monitoring/cloud_watch",
],
},
"image_formats_support",
"about_processing_pipeline",
"healthcheck",
"memory_usage_tweaks",
],
};
export default sidebars;