-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsidebars.ts
More file actions
155 lines (153 loc) · 3.9 KB
/
sidebars.ts
File metadata and controls
155 lines (153 loc) · 3.9 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
main: [
"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/classification",
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: "Cache",
link: {
type: "generated-index",
description: "Learn about how to configure cache in imgproxy",
},
items: [
{
type: "doc",
id: "cache/external",
label: "External cache",
},
{
type: "category",
label: "Internal cache",
link: {
type: "doc",
id: "cache/internal",
},
className: "menu__list-item--badge badge--pro",
items: [
"cache/internal/local_filesystem",
"cache/internal/amazon_s3",
"cache/internal/google_cloud_storage",
"cache/internal/azure_blob_storage",
"cache/internal/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;