forked from falcosecurity/falco-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.toml
509 lines (421 loc) · 13.3 KB
/
config.toml
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
baseURL = "https://falco.org"
title = "The Falco Project"
theme = ["docsy"]
# Language settings
contentDir = "content/en"
defaultContentLanguage = "en"
defaultContentLanguageInSubdir = false
enableRobotsTXT = true
disableBrowserError = true
disableKinds = ["taxonomy", "taxonomyTerm"]
ignoreFiles = [ "^OWNERS$", "README[-]+[a-z]*\\.md", "^node_modules$", "content/en/docs/doc-contributor-tools" ]
timeout = 3000
# Highlighting config.
pygmentsCodeFences = true
pygmentsUseClasses = false
# Use the new Chroma Go highlighter in Hugo.
pygmentsUseClassic = false
#pygmentsOptions = "linenos=table"
# See https://help.farbox.com/pygments.html
pygmentsStyle = "emacs"
# Enable Git variables like commit, lastmod
enableGitInfo = true
[caches]
[caches.assets]
dir = ":cacheDir/_gen"
maxAge = -1
[caches.getcsv]
dir = ":cacheDir/:project"
maxAge = "60s"
[caches.getjson]
dir = ":cacheDir/:project"
maxAge = "60s"
[caches.images]
dir = ":cacheDir/_images"
maxAge = -1
[caches.modules]
dir = ":cacheDir/modules"
maxAge = -1
[markup]
[markup.goldmark]
[markup.goldmark.extensions]
definitionList = true
table = true
typographer = false
[markup.goldmark.parser]
attribute = true
autoHeadingID = true
autoHeadingIDType = "blackfriday"
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
codeFences = true
guessSyntax = false
hl_Lines = ""
lineNoStart = 1
lineNos = false
lineNumbersInTable = true
noClasses = true
style = "emacs"
tabWidth = 4
[markup.tableOfContents]
endLevel = 3
ordered = false
startLevel = 2
[frontmatter]
date = ["date", ":filename", "publishDate", "lastmod"]
[permalinks]
blog = "/:section/:slug/"
[sitemap]
filename = "sitemap.xml"
priority = 0.75
# Be explicit about the output formats. We (currently) only want an RSS feed for the home page.
[outputs]
home = [ "HTML", "RSS", "HEADERS" ]
page = [ "HTML"]
section = [ "HTML", "RSS" ]
# Add a "text/netlify" media type for auto-generating the _headers file
[mediaTypes]
[mediaTypes."text/netlify"]
delimiter = ""
[outputFormats]
[outputFormats.RSS]
baseName = "feed"
# _headers file output (uses the template at layouts/index.headers)
[outputFormats.HEADERS]
mediatype = "text/netlify"
baseName = "_headers"
isPlainText = true
notAlternative = true
# Image processing configuration.
[imaging]
resampleFilter = "CatmullRom"
quality = 75
anchor = "smart"
[services]
[services.googleAnalytics]
# Comment out the next line to disable GA tracking. Also disables the feature described in [params.ui.feedback].
id = "UA-40398182-19"
# Additional menu items
[[menu.main]]
name = "Documentation"
weight = 40
url = "/docs/"
[[menu.main]]
name = "Blog"
weight = 50
url = "/blog/"
[[menu.main]]
name = "Community"
weight = 60
url = "/community/"
# Specify a value here if your content directory is not in your repo's root directory
#github_subdir = "userguide"
time_format_blog = "Monday, January 02, 2006"
time_format_default = "January 2, 2006"
# Sections to publish in the main RSS feed.
rss_sections = ["blog"]
# Language configuration
# Everything below this are Site Params
[params]
copyright = "The Falco Authors"
copyright_linux = "The Linux Foundation ®."
# Menu title if your navbar has a versions selector to access old versions of your site.
# This menu appears only if you have at least one [params.versions] set.
version_menu = "Releases"
# Flag used in the "version-banner" partial to decide whether to display a
# banner on every page indicating that this is an archived version of the docs.
# Set this flag to "true" if you want to display the banner.
archived_version = false
# The version number for the version of the docs represented in this doc set.
# Used in the "version-banner" partial to display a version number for the
# current doc set.
version = "v0.28.0"
# SHA256 checksum variable
sha256sum = "21e8053c37e32f95d91c9393d961af1c63b5839d795c8cac314d05daadea9779"
# A link to latest version of the docs. Used in the "version-banner" partial to
# point people to the main doc site.
url_latest_version = "https://falco.org"
# Repository links (https://www.docsy.dev/docs/adding-content/repository-links)
# Repository configuration (URLs for in-page links to opening issues and suggesting changes)
github_repo = "https://github.com/falcosecurity/falco-website"
# Specify a value here if your content directory is not in your repo's root directory
# github_subdir = "userguide"
# An optional link to a related project repo. For example, the sibling repository where your product code lives.
github_project_repo = "https://github.com/falcosecurity/falco-website"
# Specify a value here if you have would like to reference a different branch for the other github settings
# github_branch =
time_format_blog = "Monday, January 02, 2006"
time_format_default = "January 2, 2006"
# Sections to publish in the main RSS feed.
rss_sections = ["blog"]
# Enable Algolia DocSearch
algolia_docsearch = false
#Enable offline search with Lunr.js
offlineSearch = true
offlineSearchSummaryLength = 70
offlineSearchMaxResults = 10
# Enable syntax highlighting and copy buttons on code blocks with Prism
prism_syntax_highlighting = true
# User interface configuration
[params.ui]
# Enable to show the side bar menu in its compact state.
sidebar_menu_compact = false
# Set to true to disable breadcrumb navigation.
breadcrumb_disable = false
# Set to true to hide the sidebar search box (the top nav search box will still be displayed if search is enabled)
sidebar_search_disable = false
# Set to false if you don't want to display a logo (/assets/icons/logo.svg) in the top nav bar
navbar_logo = true
# Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events.
# This feature depends on [services.googleAnalytics] and will be disabled if "services.googleAnalytics.id" is not set.
# If you want this feature, but occasionally need to remove the "Feedback" section from a single page,
# add "hide_feedback: true" to the page's front matter.
[params.ui.feedback]
enable = true
# The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful).
# Update with your own repository and response text.
yes = 'Glad to hear it! Please <a href="https://github.com/falcosecurity/falco-website/issues/new">tell us how we can improve</a>.'
no = 'Sorry to hear that. Please <a href="https://github.com/falcosecurity/falco-website/issues/new">tell us how we can improve</a>.'
# Adds a reading time to the top of each doc.
# If you want this feature, but occasionally need to remove the Reading time from a single page,
# add "hide_readingtime: true" to the page's front matter
[params.ui.readingtime]
enable = false
[params.links]
# End user relevant links. These will show up on left side of footer and in the community page if you have one.
[[params.links.user]]
name = "User mailing list"
url = "https://lists.cncf.io/g/cncf-falco-dev/"
icon = "fa fa-envelope"
desc = "Discussion and help from your fellow users"
[[params.links.user]]
name ="Twitter"
url = "https://twitter.com/falco_org"
icon = "fab fa-twitter"
desc = "Follow us on Twitter to get the latest news!"
[[params.links.user]]
name = "Stack Overflow"
url = "https://stackoverflow.com/questions/tagged/falco"
icon = "fab fa-stack-overflow"
desc = "Practical questions and curated answers"
[[params.links.user]]
name = "Calendar"
url = "https://lists.cncf.io/g/cncf-falco-dev/calendar"
icon = "fas fa-calendar-alt"
desc = "Subscribe to the Falco calendar, through this ics feed"
# Developer relevant links. These will show up on right side of footer and in the community page if you have one.
[[params.links.developer]]
name = "GitHub"
url = "https://github.com/falcosecurity/falco"
icon = "fab fa-github"
desc = "Development takes place here!"
[[params.links.developer]]
name = "Slack"
url = "https://kubernetes.slack.com/messages/falco"
icon = "fab fa-slack"
desc = "Chat with other project developers"
[[params.links.developer]]
name = "Developer mailing list"
url = "https://lists.cncf.io/g/cncf-falco-dev"
icon = "fa fa-envelope"
desc = "Discuss development issues around the project"
[[params.links.developer]]
name = "Contributor of the Month"
url = "/docs/contribute/contributor-of-the-month/"
icon = "fa fa-star"
desc = "View the contributors of the month"
[params.mermaid]
enable = true
theme = "default"
[params.print]
disable_toc = false
# Language definitions.
[languages]
[languages.en]
title = "Falco"
description = "Runtime Security "
languageName ="English"
# Weight used for sorting.
weight = 1
languagedirection = "ltr"
[languages.zh]
title = "Falco"
description = "运行时安全"
languageName = "中文 Chinese"
weight = 2
contentDir = "content/zh"
languagedirection = "ltr"
[languages.zh.params]
time_format_blog = "2006.01.02"
language_alternatives = ["en"]
[languages.ko]
title = "Falco"
description = "런타임 보안"
languageName = "한국어 Korean"
weight = 3
contentDir = "content/ko"
languagedirection = "ltr"
[languages.ko.params]
time_format_blog = "2006.01.02"
language_alternatives = ["en"]
[languages.ja]
title = "Falco"
description = "ランタイムセキュリティ"
languageName = "日本語 Japanese"
weight = 4
contentDir = "content/ja"
languagedirection = "ltr"
[languages.ja.params]
time_format_blog = "2006.01.02"
language_alternatives = ["en"]
[languages.ml]
title = "Falco"
description = "റൺടൈം സെക്യൂരിറ്റി"
languageName = "മലയാളം Malayalam"
weight = 4
contentDir = "content/ml"
languagedirection = "ltr"
[languages.ml.params]
time_format_blog = "2006.01.02"
language_alternatives = ["en"]
[[params.versions]]
fullversion = "v0.26.2"
version = "v0.26"
githubbranch = "0.26.2"
docsbranch = "v0.26"
url = "https://v0-26.falco.org/"
[[params.versions]]
fullversion = "v0.27.0"
version = "v0.27"
githubbranch = "0.27.0"
docsbranch = "v0.27"
url = "https://v0-27.falco.org"
[[params.versions]]
fullversion = "v0.28.0"
version = "v0.28"
githubbranch = "master"
docsbranch = "master"
url = "https://falco.org"
# Adopters
[params.adopters]
[[params.adopters.end-users]]
src = "bah.png"
alt = "Booz Allen Hamilton"
url = "https://www.boozallen.com/"
[[params.adopters.end-users]]
src = "coveo.png"
alt = "Coveo"
url = "https://www.coveo.com/en"
[[params.adopters.end-users]]
src = "frameio.png"
alt = "Frame.io"
url = "https://frame.io/"
[[params.adopters.end-users]]
src = "gitlab.png"
alt = "GitLab"
url = "https://https://about.gitlab.com/"
[[params.adopters.end-users]]
src = "league.png"
alt = "League"
url = "https://league.com/us/"
[[params.adopters.end-users]]
src = "preferral.png"
alt = "Preferral"
url = "https://www.preferral.com/"
[[params.adopters.end-users]]
src = "shopify.png"
alt = "Shopify"
url = "https://shopify.com"
[[params.adopters.end-users]]
src = "sightmachine.png"
alt = "Sight Machine"
url = "https://sightmachine.com/"
[[params.adopters.end-users]]
src = "skyscanner.png"
alt = "Sky Scanner"
url = "https://medium.com/@SkyscannerEng/kubernetes-security-monitoring-at-scale-with-sysdig-falco-a60cfdb0f67a"
[[params.adopters.vendors]]
src = "logzio.png"
alt = "Logz.io"
url = "https://logz.io/"
[[params.adopters.vendors]]
src = "rancher.png"
alt = "Rancher"
url = "https://rancher.com"
[[params.adopters.vendors]]
src = "shujinko.png"
alt = "Shujinko"
url = "https://www.shujinko.io/products/"
[[params.adopters.vendors]]
src = "sumologic.png"
alt = "Sumo Logic"
url = "https://www.sumologic.com/"
[[params.adopters.vendors]]
src = "sysdig.png"
alt = "Sysdig"
url = "https://sysdig.com"
[[params.adopters.integrations]]
src = "helm.png"
alt = "Helm"
url = "https://helm.sh"
[[params.adopters.integrations]]
src = "kubernetes.png"
alt = "Kubernetes"
url = "https://kubernetes.io"
[[params.adopters.integrations]]
src = "opa.png"
alt = "Open Policy Agent1"
url = "https://www.openpolicyagent.org/"
[[params.adopters.integrations]]
src = "prometheus.png"
alt = "Prometheus"
url = "https://prometheus.io/"
[[params.adopters.integrations]]
src = "aws.png"
alt = "Amazon Web Services"
url = "https://aws.amazon.com/"
[[params.adopters.integrations]]
src = "azure.png"
alt = "Azure"
url = "https://azure.microsoft.com"
[[params.adopters.integrations]]
src = "datadog.png"
alt = "Datadog"
url = "https://www.datadoghq.com/"
[[params.adopters.integrations]]
src = "elasticsearch.png"
alt = "Elastic Search"
url = "https://www.elastic.co/elasticsearch"
[[params.adopters.integrations]]
src = "google.png"
alt = "Google Cloud"
url = "https://cloud.google.com/"
[[params.adopters.integrations]]
src = "ibmcloud.png"
alt = "IBM Cloud"
url = "https://www.ibm.com/cloud"
[[params.adopters.integrations]]
src = "influx.png"
alt = "InfluxDB"
url = "https://www.influxdata.com/"
[[params.adopters.integrations]]
src = "loki.png"
alt = "Grafana Loki"
url = "https://grafana.com/oss/loki/"
[[params.adopters.integrations]]
src = "opsgenie.png"
alt = "Opsgenie"
url = "https://www.atlassian.com/software/opsgenie"
[[params.adopters.integrations]]
src = "redhat.png"
alt = "Red Hat"
url = "https://www.redhat.com"
[[params.adopters.integrations]]
src = "slack.png"
alt = "Slack"
url = "https://slack.com/"
[[params.adopters.integrations]]
src = "statsd.png"
alt = "StatsD"
url = "https://github.com/statsd/statsd"