diff --git a/docs/.editorconfig b/docs/.editorconfig index dad6b582..13c86295 100644 --- a/docs/.editorconfig +++ b/docs/.editorconfig @@ -1,11 +1,6 @@ # editorconfig.org -root = true - [*] indent_style = space indent_size = 2 -end_of_line = lf charset = utf-8 -trim_trailing_whitespace = true -insert_final_newline = true \ No newline at end of file diff --git a/docs/assets/js/index.js b/docs/assets/js/index.js index 672d6c7a..b02ace14 100644 --- a/docs/assets/js/index.js +++ b/docs/assets/js/index.js @@ -75,26 +75,20 @@ Source: } }); + {{ $list := slice }} + {{- if and (isset .Site.Params.options "searchsectionsindex") (not (eq (len .Site.Params.options.searchSectionsIndex) 0)) }} + {{- if eq .Site.Params.options.searchSectionsIndex "ALL" }} + {{- $list = .Site.Pages }} + {{- else }} + {{- $list = (where (where .Site.Pages "Type" "in" .Site.Params.options.searchSectionsIndex) ".Params.search.index" "!=" "false") }} + {{- if (in .Site.Params.options.searchSectionsIndex "HomePage") }} + {{ $list = $list | append .Site.Home }} + {{- end }} + {{- end }} + {{- else }} + {{- $list = (where .Site.Pages "Section" "docs") }} + {{- end }} - // Not yet supported: https://github.com/nextapps-de/flexsearch#complex-documents - - /* - var docs = [ - {{ range $index, $page := (where .Site.Pages "Section" "docs") -}} - { - id: {{ $index }}, - href: "{{ .Permalink }}", - title: {{ .Title | jsonify }}, - description: {{ .Params.description | jsonify }}, - content: {{ .Content | jsonify }} - }, - {{ end -}} - ]; - */ - - // https://discourse.gohugo.io/t/range-length-or-last-element/3803/2 - - {{ $list := (where .Site.RegularPages "Type" "in" (union .Site.Params.Sections.Search .Site.Params.Sections.Searchable)) -}} {{ $len := (len $list) -}} index.add( @@ -120,8 +114,8 @@ Source: function show_results(){ const maxResult = 5; - var searchQuery = this.value; - var results = index.search(searchQuery, {limit: maxResult, enrich: true}); + const searchQuery = this.value; + const results = index.search(searchQuery, {limit: maxResult, enrich: true}); // flatten results since index.search() returns results for each indexed field const flatResults = new Map(); // keyed by href to dedupe results @@ -163,7 +157,7 @@ Source: suggestions.appendChild(entry); - if(suggestions.childElementCount == maxResult) break; + if(suggestions.childElementCount === maxResult) break; } } }()); diff --git a/docs/config/_default/params.toml b/docs/config/_default/params.toml index 10cd7ed9..87181c78 100644 --- a/docs/config/_default/params.toml +++ b/docs/config/_default/params.toml @@ -76,6 +76,8 @@ lastMod = true clipBoard = true instantPage = true flexSearch = true + searchSectionsShow = ["overview", "configuration", "integration", "contributing", "reference"] + searchSectionsIndex = ["overview", "configuration", "integration", "contributing", "reference", "blog"] darkMode = true bootStrapJs = true breadCrumb = true @@ -89,7 +91,3 @@ lastMod = true [menu.section] auto = true collapsibleSidebar = true - -[Sections] - Search = ["overview", "configuration", "integration", "contributing", "reference"] - Searchable = ["blog"] diff --git a/docs/content/en/_index.md b/docs/content/en/_index.md index 19273aca..91c27c94 100644 --- a/docs/content/en/_index.md +++ b/docs/content/en/_index.md @@ -1,8 +1,8 @@ --- -title : "Authelia" +title: "Authelia" description: "Authelia is an open-source authentication and authorization server and portal fulfilling the identity and access management (IAM) role of information security in providing multi-factor authentication and single sign-on (SSO) for your applications via a web portal. It acts as a companion for common reverse proxies." lead: "Authelia is an open-source authentication and authorization server and portal fulfilling the identity and access management (IAM) role of information security in providing multi-factor authentication and single sign-on (SSO) for your applications via a web portal. It acts as a companion for common reverse proxies." -date: 2020-04-15T15:48:16+02:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] --- diff --git a/docs/content/en/blog/_index.md b/docs/content/en/blog/_index.md index 0970d63d..4580e456 100644 --- a/docs/content/en/blog/_index.md +++ b/docs/content/en/blog/_index.md @@ -1,7 +1,7 @@ --- title: "Blog" description: "The Authelia Blog." -date: 2020-04-15T15:48:16+02:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] --- diff --git a/docs/content/en/blog/say-hello-to-the-new-website/index.md b/docs/content/en/blog/say-hello-to-the-new-website/index.md index 6c2bbcef..a9c66d7b 100644 --- a/docs/content/en/blog/say-hello-to-the-new-website/index.md +++ b/docs/content/en/blog/say-hello-to-the-new-website/index.md @@ -2,7 +2,7 @@ title: "Say hello to the new website 👋" description: "Introducing the new website" lead: "Introducing the new website" -date: 2022-06-15T18:12:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false contributors: ["James Elliott"] --- diff --git a/docs/content/en/configuration/_index.md b/docs/content/en/configuration/_index.md index 528a84bc..17d4b8ff 100644 --- a/docs/content/en/configuration/_index.md +++ b/docs/content/en/configuration/_index.md @@ -1,8 +1,8 @@ --- -title : "Configuration" +title: "Configuration" description: "Configuration Docs" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] --- diff --git a/docs/content/en/configuration/first-factor/_index.md b/docs/content/en/configuration/first-factor/_index.md index e8e8032c..ac057fae 100644 --- a/docs/content/en/configuration/first-factor/_index.md +++ b/docs/content/en/configuration/first-factor/_index.md @@ -1,8 +1,8 @@ --- -title : "First Factor" +title: "First Factor" description: "First Factor methods configuration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 102000 diff --git a/docs/content/en/configuration/first-factor/file.md b/docs/content/en/configuration/first-factor/file.md index 72a5f827..786db99a 100644 --- a/docs/content/en/configuration/first-factor/file.md +++ b/docs/content/en/configuration/first-factor/file.md @@ -2,7 +2,7 @@ title: "File" description: "File" lead: "Authelia supports a file based first factor user provider. This section describes configuring this." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/first-factor/introduction.md b/docs/content/en/configuration/first-factor/introduction.md index b7797562..4c620e9c 100644 --- a/docs/content/en/configuration/first-factor/introduction.md +++ b/docs/content/en/configuration/first-factor/introduction.md @@ -2,7 +2,7 @@ title: "First Factor" description: "Configuring Authelia First Factor Authentication." lead: "Authelia uses a username and password for a first factor method. This section describes configuring this." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/first-factor/ldap.md b/docs/content/en/configuration/first-factor/ldap.md index 3c06b520..d7474d1a 100644 --- a/docs/content/en/configuration/first-factor/ldap.md +++ b/docs/content/en/configuration/first-factor/ldap.md @@ -2,7 +2,7 @@ title: "LDAP" description: "Configuring LDAP" lead: "Authelia supports an LDAP server based first factor user provider. This section describes configuring this." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/identity-providers/_index.md b/docs/content/en/configuration/identity-providers/_index.md index 865b42b5..e6232cf1 100644 --- a/docs/content/en/configuration/identity-providers/_index.md +++ b/docs/content/en/configuration/identity-providers/_index.md @@ -1,8 +1,8 @@ --- -title : "Identity Providers" +title: "Identity Providers" description: "Identity Providers Configuration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 190000 diff --git a/docs/content/en/configuration/identity-providers/introduction.md b/docs/content/en/configuration/identity-providers/introduction.md index 95b8d610..57a6ff32 100644 --- a/docs/content/en/configuration/identity-providers/introduction.md +++ b/docs/content/en/configuration/identity-providers/introduction.md @@ -2,7 +2,7 @@ title: "Identity Providers" description: "Identity Providers Configuration" lead: "Authelia is evolving to become an identity provider. This section describes how to configure this." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/identity-providers/open-id-connect.md b/docs/content/en/configuration/identity-providers/open-id-connect.md index aa4a99ae..c4ba79fc 100644 --- a/docs/content/en/configuration/identity-providers/open-id-connect.md +++ b/docs/content/en/configuration/identity-providers/open-id-connect.md @@ -2,7 +2,7 @@ title: "OpenID Connect" description: "OpenID Connect Configuration" lead: "Authelia can operate as an OpenID Connect provider. This section describes how to configure this." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/methods/_index.md b/docs/content/en/configuration/methods/_index.md index fd1fd0d0..60979f3d 100644 --- a/docs/content/en/configuration/methods/_index.md +++ b/docs/content/en/configuration/methods/_index.md @@ -1,8 +1,8 @@ --- -title : "Methods" +title: "Methods" description: "Methods of Configuration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 101000 diff --git a/docs/content/en/configuration/methods/environment.md b/docs/content/en/configuration/methods/environment.md index 15bdc731..e22f539b 100644 --- a/docs/content/en/configuration/methods/environment.md +++ b/docs/content/en/configuration/methods/environment.md @@ -2,7 +2,7 @@ title: "Environment" description: "Using the Environment Variable Configuration Method." lead: "Authelia has a layered configuration model. This section describes how to implement the environment configuration." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/methods/files.md b/docs/content/en/configuration/methods/files.md index 7e02b2bd..a1b4db76 100644 --- a/docs/content/en/configuration/methods/files.md +++ b/docs/content/en/configuration/methods/files.md @@ -2,7 +2,7 @@ title: "Files" description: "Using the YAML File Configuration Method." lead: "Authelia can be configured via files. This section describes utilizing this method." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/methods/introduction.md b/docs/content/en/configuration/methods/introduction.md index dc21fdc4..d0a8bebe 100644 --- a/docs/content/en/configuration/methods/introduction.md +++ b/docs/content/en/configuration/methods/introduction.md @@ -2,7 +2,7 @@ title: "Methods" description: "Methods of Configuration." lead: "Authelia has a layered configuration model. This section describes how to implement configuration." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/methods/secrets.md b/docs/content/en/configuration/methods/secrets.md index dffe2366..10c9096f 100644 --- a/docs/content/en/configuration/methods/secrets.md +++ b/docs/content/en/configuration/methods/secrets.md @@ -2,7 +2,7 @@ title: "Secrets" description: "Using the Secrets Configuration Method." lead: "Authelia allows providing configuration via secrets method. This section describes how to implement this." -date: 2022-03-20T12:52:27+11:00 +date: 2020-02-29T01:43:59+01:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/miscellaneous/_index.md b/docs/content/en/configuration/miscellaneous/_index.md index 9ff03689..5a589c8a 100644 --- a/docs/content/en/configuration/miscellaneous/_index.md +++ b/docs/content/en/configuration/miscellaneous/_index.md @@ -1,8 +1,8 @@ --- -title : "Miscellaneous" +title: "Miscellaneous" description: "Miscellaneous Configuration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 199000 diff --git a/docs/content/en/configuration/miscellaneous/guides.md b/docs/content/en/configuration/miscellaneous/guides.md index 34311d11..20e04b6e 100644 --- a/docs/content/en/configuration/miscellaneous/guides.md +++ b/docs/content/en/configuration/miscellaneous/guides.md @@ -2,7 +2,7 @@ title: "Guides" description: "Miscellaneous Guides for Configuration." lead: "This section contains miscellaneous guides used in the configuration." -date: 2022-05-16T15:21:22+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/miscellaneous/introduction.md b/docs/content/en/configuration/miscellaneous/introduction.md index 7cf7f35c..67b436b9 100644 --- a/docs/content/en/configuration/miscellaneous/introduction.md +++ b/docs/content/en/configuration/miscellaneous/introduction.md @@ -2,7 +2,7 @@ title: "Miscellaneous" description: "Miscellaneous Configuration." lead: "Authelia has a few config items that don't fit into their own area. This describes these options." -date: 2022-03-20T12:52:27+11:00 +date: 2020-02-29T01:43:59+01:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/miscellaneous/logging.md b/docs/content/en/configuration/miscellaneous/logging.md index c46bec79..8c372885 100644 --- a/docs/content/en/configuration/miscellaneous/logging.md +++ b/docs/content/en/configuration/miscellaneous/logging.md @@ -2,7 +2,7 @@ title: "Log" description: "Configuring the Log Settings." lead: "Authelia performs logging to various locations. This section describes how to configure and tune this." -date: 2022-03-20T12:52:27+11:00 +date: 2021-06-01T14:09:50+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/miscellaneous/ntp.md b/docs/content/en/configuration/miscellaneous/ntp.md index a8c50cbb..e5d32a55 100644 --- a/docs/content/en/configuration/miscellaneous/ntp.md +++ b/docs/content/en/configuration/miscellaneous/ntp.md @@ -2,7 +2,7 @@ title: "NTP" description: "Configuring the NTP Settings." lead: "Authelia checks the system time is in sync with an NTP server. This section describes how to configure and tune this." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/miscellaneous/server.md b/docs/content/en/configuration/miscellaneous/server.md index c49bda59..b763e99a 100644 --- a/docs/content/en/configuration/miscellaneous/server.md +++ b/docs/content/en/configuration/miscellaneous/server.md @@ -2,7 +2,7 @@ title: "Server" description: "Configuring the Server Settings." lead: "Authelia runs an internal webserver. This section describes how to configure and tune this." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/notifications/_index.md b/docs/content/en/configuration/notifications/_index.md index a65ea9b9..305074b2 100644 --- a/docs/content/en/configuration/notifications/_index.md +++ b/docs/content/en/configuration/notifications/_index.md @@ -1,8 +1,8 @@ --- -title : "Notifications" -description: "Notifiations Configuration" +title: "Notifications" +description: "Notifications Configuration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 107000 diff --git a/docs/content/en/configuration/notifications/file.md b/docs/content/en/configuration/notifications/file.md index 2e720c0f..e004fad9 100644 --- a/docs/content/en/configuration/notifications/file.md +++ b/docs/content/en/configuration/notifications/file.md @@ -2,7 +2,7 @@ title: "File System" description: "Configuring the File Notifications Settings." lead: "Authelia can save notifications to a file. This section describes how to configure this." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/notifications/introduction.md b/docs/content/en/configuration/notifications/introduction.md index 3eea1ce1..eb04def3 100644 --- a/docs/content/en/configuration/notifications/introduction.md +++ b/docs/content/en/configuration/notifications/introduction.md @@ -2,7 +2,7 @@ title: "Notifications" description: "Configuring the Notifications Settings." lead: "Authelia sends messages to users in order to verify their identity. This section describes how to configure this." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/notifications/smtp.md b/docs/content/en/configuration/notifications/smtp.md index 8f4d6cdb..8b35ef6f 100644 --- a/docs/content/en/configuration/notifications/smtp.md +++ b/docs/content/en/configuration/notifications/smtp.md @@ -2,7 +2,7 @@ title: "SMTP" description: "Configuring the SMTP Notifications Settings." lead: "Authelia can send emails to users through an SMTP server. This section describes how to configure this." -date: 2022-03-20T12:52:27+11:00 +date: 2020-02-29T01:43:59+01:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/prologue/_index.md b/docs/content/en/configuration/prologue/_index.md index 7ed72af8..97c1c955 100644 --- a/docs/content/en/configuration/prologue/_index.md +++ b/docs/content/en/configuration/prologue/_index.md @@ -1,8 +1,8 @@ --- -title : "Prologue" +title: "Prologue" description: "Configuration Prologue" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 100000 diff --git a/docs/content/en/configuration/prologue/common.md b/docs/content/en/configuration/prologue/common.md index 43d28a8b..72ad7f42 100644 --- a/docs/content/en/configuration/prologue/common.md +++ b/docs/content/en/configuration/prologue/common.md @@ -2,7 +2,7 @@ title: "Common" description: "Common configuration options and notations." lead: "This section details common configuration elements within the Authelia configuration. This section is mainly used as a reference for other sections as necessary." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/prologue/introduction.md b/docs/content/en/configuration/prologue/introduction.md index 7a19ef03..76763c33 100644 --- a/docs/content/en/configuration/prologue/introduction.md +++ b/docs/content/en/configuration/prologue/introduction.md @@ -2,7 +2,7 @@ title: "Prologue" description: "An introduction into configuring Authelia." lead: "An introduction into configuring Authelia." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/prologue/migration.md b/docs/content/en/configuration/prologue/migration.md index 80b14cb9..e03460c9 100644 --- a/docs/content/en/configuration/prologue/migration.md +++ b/docs/content/en/configuration/prologue/migration.md @@ -2,7 +2,7 @@ title: "Migration" description: "Information regarding configuration migration." lead: "An introduction into configuring Authelia." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/second-factor/_index.md b/docs/content/en/configuration/second-factor/_index.md index ddf76c13..abc4a793 100644 --- a/docs/content/en/configuration/second-factor/_index.md +++ b/docs/content/en/configuration/second-factor/_index.md @@ -1,8 +1,8 @@ --- -title : "Second Factor" +title: "Second Factor" description: "Second Factor methods configuration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 103000 diff --git a/docs/content/en/configuration/second-factor/duo.md b/docs/content/en/configuration/second-factor/duo.md index 5cea9839..9eacab0e 100644 --- a/docs/content/en/configuration/second-factor/duo.md +++ b/docs/content/en/configuration/second-factor/duo.md @@ -2,7 +2,7 @@ title: "Duo / Mobile Push" description: "Configuring the Duo Mobile Push Notification Second Factor Method." lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/second-factor/introduction.md b/docs/content/en/configuration/second-factor/introduction.md index ebf14f80..8de9b0e6 100644 --- a/docs/content/en/configuration/second-factor/introduction.md +++ b/docs/content/en/configuration/second-factor/introduction.md @@ -2,7 +2,7 @@ title: "Second Factor" description: "Configuring Authelia Second Factor Authentication." lead: "Authelia provides a number of 2FA methods. This section describes these methods." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/second-factor/time-based-one-time-password.md b/docs/content/en/configuration/second-factor/time-based-one-time-password.md index e95507a1..a3767882 100644 --- a/docs/content/en/configuration/second-factor/time-based-one-time-password.md +++ b/docs/content/en/configuration/second-factor/time-based-one-time-password.md @@ -2,7 +2,7 @@ title: "Time-based One Time Password" description: "Configuring the Time-based One Time Password Second Factor Method." lead: "Authelia supports utilizing time-based one-time passwords as a 2FA method." -date: 2022-03-20T12:52:27+11:00 +date: 2020-02-29T01:43:59+01:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/second-factor/webauthn.md b/docs/content/en/configuration/second-factor/webauthn.md index c194a16b..99c66851 100644 --- a/docs/content/en/configuration/second-factor/webauthn.md +++ b/docs/content/en/configuration/second-factor/webauthn.md @@ -2,7 +2,7 @@ title: "WebAuthn" description: "Configuring the WebAuthn Second Factor Method." lead: "WebAuthn is the modern browser security key specification that Authelia supports. This section describes configuring it." -date: 2022-03-20T12:52:27+11:00 +date: 2022-03-03T22:20:43+11:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/security/_index.md b/docs/content/en/configuration/security/_index.md index 077d9017..a93555e3 100644 --- a/docs/content/en/configuration/security/_index.md +++ b/docs/content/en/configuration/security/_index.md @@ -2,7 +2,7 @@ title: "Security" description: "Security Related Configuration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 104000 diff --git a/docs/content/en/configuration/security/access-control.md b/docs/content/en/configuration/security/access-control.md index bc322585..4db71039 100644 --- a/docs/content/en/configuration/security/access-control.md +++ b/docs/content/en/configuration/security/access-control.md @@ -2,7 +2,7 @@ title: "Access Control" description: "Configuring the Access Control or RBAC settings." lead: "Authelia supports a comprehensive access control system. This section describes configuring this." -date: 2022-03-20T12:52:27+11:00 +date: 2020-02-29T01:43:59+01:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/security/introduction.md b/docs/content/en/configuration/security/introduction.md index 569f02ea..1458c2c7 100644 --- a/docs/content/en/configuration/security/introduction.md +++ b/docs/content/en/configuration/security/introduction.md @@ -2,7 +2,7 @@ title: "Security" description: "Security Related Configuration" lead: "An introduction into configuring the security settings." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/security/password-policy.md b/docs/content/en/configuration/security/password-policy.md index 6722adce..5a759f70 100644 --- a/docs/content/en/configuration/security/password-policy.md +++ b/docs/content/en/configuration/security/password-policy.md @@ -2,7 +2,7 @@ title: "Password Policy" description: "Password Policy Configuration" lead: "Configuring the Password Policy." -date: 2022-04-12T14:40:22+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/security/regulation.md b/docs/content/en/configuration/security/regulation.md index b425c480..93bcc307 100644 --- a/docs/content/en/configuration/security/regulation.md +++ b/docs/content/en/configuration/security/regulation.md @@ -2,7 +2,7 @@ title: "Regulation" description: "Regulation Configuration" lead: "Configuring the Regulation system." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/session/_index.md b/docs/content/en/configuration/session/_index.md index 01866387..c3b03ee4 100644 --- a/docs/content/en/configuration/session/_index.md +++ b/docs/content/en/configuration/session/_index.md @@ -2,7 +2,7 @@ title: "Session" description: "Session Configuration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 105000 diff --git a/docs/content/en/configuration/session/introduction.md b/docs/content/en/configuration/session/introduction.md index c3b3aeda..494ab083 100644 --- a/docs/content/en/configuration/session/introduction.md +++ b/docs/content/en/configuration/session/introduction.md @@ -2,7 +2,7 @@ title: "Session" description: "Session Configuration" lead: "Configuring the Session / Cookie settings." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/session/redis.md b/docs/content/en/configuration/session/redis.md index 4329139c..dd9e2bbc 100644 --- a/docs/content/en/configuration/session/redis.md +++ b/docs/content/en/configuration/session/redis.md @@ -2,7 +2,7 @@ title: "Redis" description: "Redis Session Configuration" lead: "Configuring the Redis Session Storage." -date: 2022-03-20T12:52:27+11:00 +date: 2021-04-11T21:25:03+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/storage/_index.md b/docs/content/en/configuration/storage/_index.md index 60f7cca2..691c62a9 100644 --- a/docs/content/en/configuration/storage/_index.md +++ b/docs/content/en/configuration/storage/_index.md @@ -2,7 +2,7 @@ title: "Storage" description: "Storage Configuration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 106000 diff --git a/docs/content/en/configuration/storage/introduction.md b/docs/content/en/configuration/storage/introduction.md index fe829fc2..516e41ce 100644 --- a/docs/content/en/configuration/storage/introduction.md +++ b/docs/content/en/configuration/storage/introduction.md @@ -2,7 +2,7 @@ title: "Storage" description: "Storage Configuration" lead: "Configuring the SQL Storage." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/storage/migrations.md b/docs/content/en/configuration/storage/migrations.md index b2a77512..b3cc6828 100644 --- a/docs/content/en/configuration/storage/migrations.md +++ b/docs/content/en/configuration/storage/migrations.md @@ -2,7 +2,7 @@ title: "Migrations" description: "Storage Migrations" lead: "A migration ." -date: 2022-03-20T12:52:27+11:00 +date: 2021-11-23T20:45:38+11:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/storage/mysql.md b/docs/content/en/configuration/storage/mysql.md index 8b3cdf6f..a8ba2f64 100644 --- a/docs/content/en/configuration/storage/mysql.md +++ b/docs/content/en/configuration/storage/mysql.md @@ -2,7 +2,7 @@ title: "MySQL" description: "MySQL Configuration" lead: "The MySQL storage provider which supports both MySQL and MariaDB." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/storage/postgres.md b/docs/content/en/configuration/storage/postgres.md index 9066e13b..3008c81f 100644 --- a/docs/content/en/configuration/storage/postgres.md +++ b/docs/content/en/configuration/storage/postgres.md @@ -2,7 +2,7 @@ title: "PostgreSQL" description: "PostgreSQL Configuration" lead: "The PostgreSQL storage provider." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/storage/sqlite.md b/docs/content/en/configuration/storage/sqlite.md index 9e54ee04..d0a27b75 100644 --- a/docs/content/en/configuration/storage/sqlite.md +++ b/docs/content/en/configuration/storage/sqlite.md @@ -2,7 +2,7 @@ title: "SQLite3" description: "SQLite3 Configuration" lead: "The SQLite3 storage provider." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/telemetry/_index.md b/docs/content/en/configuration/telemetry/_index.md index 41b578d6..47312da9 100644 --- a/docs/content/en/configuration/telemetry/_index.md +++ b/docs/content/en/configuration/telemetry/_index.md @@ -2,7 +2,7 @@ title: "Telemetry" description: "Telemetry Configuration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 108000 diff --git a/docs/content/en/configuration/telemetry/introduction.md b/docs/content/en/configuration/telemetry/introduction.md index acbcf9f0..f073ae94 100644 --- a/docs/content/en/configuration/telemetry/introduction.md +++ b/docs/content/en/configuration/telemetry/introduction.md @@ -2,7 +2,7 @@ title: "Telemetry" description: "Configuring the Telemetry settings" lead: "Configuring the Telemetry settings." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/configuration/telemetry/metrics.md b/docs/content/en/configuration/telemetry/metrics.md index 73a39966..c417df28 100644 --- a/docs/content/en/configuration/telemetry/metrics.md +++ b/docs/content/en/configuration/telemetry/metrics.md @@ -2,7 +2,7 @@ title: "Metrics" description: "Configuring the Metrics Telemetry settings" lead: "Configuring the Metrics Telemetry settings." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/contributing/_index.md b/docs/content/en/contributing/_index.md index 3e73d799..cd8859c2 100644 --- a/docs/content/en/contributing/_index.md +++ b/docs/content/en/contributing/_index.md @@ -1,8 +1,8 @@ --- -title : "Contributing" +title: "Contributing" description: "Contributing Docs" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] --- diff --git a/docs/content/en/contributing/development/_index.md b/docs/content/en/contributing/development/_index.md index 7dd3500a..1ca7ef17 100644 --- a/docs/content/en/contributing/development/_index.md +++ b/docs/content/en/contributing/development/_index.md @@ -1,8 +1,8 @@ --- -title : "Development" +title: "Development" description: "Contributing via Development" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 200 diff --git a/docs/content/en/contributing/development/build-and-test.md b/docs/content/en/contributing/development/build-and-test.md index 8c0d3473..2cc95780 100644 --- a/docs/content/en/contributing/development/build-and-test.md +++ b/docs/content/en/contributing/development/build-and-test.md @@ -2,7 +2,7 @@ title: "Building and Testing" description: "Building and Testing Authelia." lead: "This section covers the build process and how to perform tests in development." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/contributing/development/environment.md b/docs/content/en/contributing/development/environment.md index 87c94d34..864e5d47 100644 --- a/docs/content/en/contributing/development/environment.md +++ b/docs/content/en/contributing/development/environment.md @@ -2,7 +2,7 @@ title: "Environment" description: "How to configure your development environment." lead: "This section covers the environment we recommend for development." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/contributing/development/guidelines-commit-message.md b/docs/content/en/contributing/development/guidelines-commit-message.md index 0a8ff7db..45b3e640 100644 --- a/docs/content/en/contributing/development/guidelines-commit-message.md +++ b/docs/content/en/contributing/development/guidelines-commit-message.md @@ -2,7 +2,7 @@ title: "Commit Message Guidelines" description: "Authelia Development Commit Message Guidelines" lead: "This section covers the git commit message guidelines we use for development." -date: 2022-05-15T13:52:27+10:00 +date: 2021-01-30T19:29:07+11:00 draft: false images: [] menu: diff --git a/docs/content/en/contributing/development/guidelines-pull-request.md b/docs/content/en/contributing/development/guidelines-pull-request.md index 1a5f7d12..cd0e67be 100644 --- a/docs/content/en/contributing/development/guidelines-pull-request.md +++ b/docs/content/en/contributing/development/guidelines-pull-request.md @@ -2,7 +2,7 @@ title: "Pull Request Guidelines" description: "Authelia Development Pull Request Guidelines" lead: "This section covers the pull request guidelines." -date: 2022-05-23T22:03:03+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/contributing/development/guidelines-style.md b/docs/content/en/contributing/development/guidelines-style.md index 19f4f8ac..a990cddc 100644 --- a/docs/content/en/contributing/development/guidelines-style.md +++ b/docs/content/en/contributing/development/guidelines-style.md @@ -2,7 +2,7 @@ title: "Style Guidelines" description: "Authelia Development Style Guidelines" lead: "This section covers the style guidelines we use for development." -date: 2022-05-15T13:52:27+10:00 +date: 2021-04-11T21:25:03+10:00 draft: false images: [] menu: diff --git a/docs/content/en/contributing/development/integration-suites.md b/docs/content/en/contributing/development/integration-suites.md index bf1a0bab..dee8b36e 100644 --- a/docs/content/en/contributing/development/integration-suites.md +++ b/docs/content/en/contributing/development/integration-suites.md @@ -2,7 +2,7 @@ title: "Integration Suites" description: "Integration Suites." lead: "This section covers the build process and how to perform tests in development." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/contributing/development/introduction.md b/docs/content/en/contributing/development/introduction.md index cbdbe348..0591223e 100644 --- a/docs/content/en/contributing/development/introduction.md +++ b/docs/content/en/contributing/development/introduction.md @@ -2,7 +2,7 @@ title: "Development" description: "An introduction into contributing to the Authelia project via development." lead: "An introduction into contributing to the Authelia project via development." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/contributing/development/reference-authelia-scripts.md b/docs/content/en/contributing/development/reference-authelia-scripts.md index ca3a065c..e5d2973d 100644 --- a/docs/content/en/contributing/development/reference-authelia-scripts.md +++ b/docs/content/en/contributing/development/reference-authelia-scripts.md @@ -2,7 +2,7 @@ title: "Reference: authelia-scripts" description: "This section covers the authelia-scripts tool." lead: "This section covers the authelia-scripts tool." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/contributing/prologue/_index.md b/docs/content/en/contributing/prologue/_index.md index a7f8fbb8..eb10b44c 100644 --- a/docs/content/en/contributing/prologue/_index.md +++ b/docs/content/en/contributing/prologue/_index.md @@ -1,8 +1,8 @@ --- -title : "Prologue" +title: "Prologue" description: "Contributing Prologue" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 100 diff --git a/docs/content/en/contributing/prologue/documentation.md b/docs/content/en/contributing/prologue/documentation.md index bfb6c457..8053eef7 100644 --- a/docs/content/en/contributing/prologue/documentation.md +++ b/docs/content/en/contributing/prologue/documentation.md @@ -2,7 +2,7 @@ title: "Documentation" description: "Information on contributing documentation to the Authelia project." lead: "Authelia has great documentation however there are always things that can be added. This section describes the contribution process for the documentation even though it's incredibly easy." -date: 2022-05-19T14:18:33+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/contributing/prologue/financial/index.md b/docs/content/en/contributing/prologue/financial/index.md index 0e361623..757925d1 100644 --- a/docs/content/en/contributing/prologue/financial/index.md +++ b/docs/content/en/contributing/prologue/financial/index.md @@ -2,7 +2,7 @@ title: "Financial" description: "Information on contributing financially to the Authelia project." lead: "The Authelia team is small and all of the maintainers spend their free time managing the project. Some may wish to contribute financially for various reasons, this page provides information about doing so." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/contributing/prologue/introduction.md b/docs/content/en/contributing/prologue/introduction.md index 10aaa33e..c0a33d43 100644 --- a/docs/content/en/contributing/prologue/introduction.md +++ b/docs/content/en/contributing/prologue/introduction.md @@ -2,7 +2,7 @@ title: "Prologue" description: "An introduction into contributing to the Authelia project." lead: "An introduction into contributing to the Authelia project." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/contributing/prologue/translations.md b/docs/content/en/contributing/prologue/translations.md index 48a2067a..f7290b9a 100644 --- a/docs/content/en/contributing/prologue/translations.md +++ b/docs/content/en/contributing/prologue/translations.md @@ -2,7 +2,7 @@ title: "Translations" description: "Information on contributing translations to the Authelia project." lead: "Authelia has translations for many using facing areas of the web portal. Contributing to these translations is a very easy process." -date: 2022-05-16T13:42:36+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/contributors/_index.md b/docs/content/en/contributors/_index.md index 2ce6b1ac..b35df979 100644 --- a/docs/content/en/contributors/_index.md +++ b/docs/content/en/contributors/_index.md @@ -1,7 +1,7 @@ --- title: "Contributors" description: "The Doks contributors." -date: 2020-11-04T08:26:58+01:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] --- diff --git a/docs/content/en/contributors/james-elliott/_index.md b/docs/content/en/contributors/james-elliott/_index.md index 415c2f46..70b9e7b4 100644 --- a/docs/content/en/contributors/james-elliott/_index.md +++ b/docs/content/en/contributors/james-elliott/_index.md @@ -1,7 +1,7 @@ --- title: "James Elliott" description: "Authelia Core Team" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] --- diff --git a/docs/content/en/information/_index.md b/docs/content/en/information/_index.md index 0501a5a3..c9b4732d 100644 --- a/docs/content/en/information/_index.md +++ b/docs/content/en/information/_index.md @@ -1,7 +1,7 @@ --- title: "Information" description: "Information about the project." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] --- diff --git a/docs/content/en/information/code-of-conduct.md b/docs/content/en/information/code-of-conduct.md index 42d44119..b6f595d3 100644 --- a/docs/content/en/information/code-of-conduct.md +++ b/docs/content/en/information/code-of-conduct.md @@ -2,7 +2,7 @@ title: "Code of Conduct" description: "An introduction into contributing to the Authelia project." lead: "An introduction into contributing to the Authelia project." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/information/contact.md b/docs/content/en/information/contact.md index 706f3bd3..90860d02 100644 --- a/docs/content/en/information/contact.md +++ b/docs/content/en/information/contact.md @@ -1,7 +1,7 @@ --- title: "Contact" description: "Drop us an email." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] aliases: diff --git a/docs/content/en/information/privacy-policy.md b/docs/content/en/information/privacy-policy.md index 4b8ff644..e646d854 100644 --- a/docs/content/en/information/privacy-policy.md +++ b/docs/content/en/information/privacy-policy.md @@ -1,7 +1,7 @@ --- title: "Privacy Policy" description: "We do not use cookies and we do not collect any personal data." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/information/security.md b/docs/content/en/information/security.md index 4793e3f2..abf789d9 100644 --- a/docs/content/en/information/security.md +++ b/docs/content/en/information/security.md @@ -1,7 +1,7 @@ --- title: "Security" description: "Report security issues." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] aliases: diff --git a/docs/content/en/integration/_index.md b/docs/content/en/integration/_index.md index 62d2ef55..b13d9323 100644 --- a/docs/content/en/integration/_index.md +++ b/docs/content/en/integration/_index.md @@ -1,8 +1,8 @@ --- -title : "Integration" +title: "Integration" description: "Integration Docs" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] --- diff --git a/docs/content/en/integration/deployment/_index.md b/docs/content/en/integration/deployment/_index.md index 1e21a81f..68c9c154 100644 --- a/docs/content/en/integration/deployment/_index.md +++ b/docs/content/en/integration/deployment/_index.md @@ -2,7 +2,7 @@ title: "Deployment" description: "Deployment" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 200 diff --git a/docs/content/en/integration/deployment/automation.md b/docs/content/en/integration/deployment/automation.md index 5f91cee7..84063834 100644 --- a/docs/content/en/integration/deployment/automation.md +++ b/docs/content/en/integration/deployment/automation.md @@ -2,7 +2,7 @@ title: "Automation" description: "Automated Deployment of Authelia." lead: "Authelia has several features which make automation easy." -date: 2022-05-28T08:20:42+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/deployment/bare-metal.md b/docs/content/en/integration/deployment/bare-metal.md index 1dc63ac5..0e8126be 100644 --- a/docs/content/en/integration/deployment/bare-metal.md +++ b/docs/content/en/integration/deployment/bare-metal.md @@ -2,7 +2,7 @@ title: "Bare-Metal" description: "Deploying Authelia on Bare-Metal." lead: "Authelia can be deployed on Bare-Metal as long as it sits behind a proxy." -date: 2022-05-27T22:24:38+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/deployment/docker.md b/docs/content/en/integration/deployment/docker.md index 3a9b48b4..d1fe0403 100644 --- a/docs/content/en/integration/deployment/docker.md +++ b/docs/content/en/integration/deployment/docker.md @@ -2,7 +2,7 @@ title: "Docker" description: "A guide on installing Authelia in Docker." lead: "This is one of the primary ways we deliver Authelia to users and the recommended path." -date: 2022-05-27T22:24:38+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/deployment/introduction.md b/docs/content/en/integration/deployment/introduction.md index f463f550..76d245be 100644 --- a/docs/content/en/integration/deployment/introduction.md +++ b/docs/content/en/integration/deployment/introduction.md @@ -2,7 +2,7 @@ title: "Deployment" description: "An introduction into integrating Authelia with a product." lead: "An introduction into integrating Authelia within your architecture." -date: 2022-05-27T22:24:38+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/deployment/kubernetes.md b/docs/content/en/integration/deployment/kubernetes.md index efe6f74b..99edc587 100644 --- a/docs/content/en/integration/deployment/kubernetes.md +++ b/docs/content/en/integration/deployment/kubernetes.md @@ -2,7 +2,7 @@ title: "Kubernetes" description: "Test Description" lead: "An introduction into integrating Authelia with Kubernetes." -date: 2022-05-28T08:20:42+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: @@ -11,7 +11,8 @@ menu: identifier: "kubernetes-deployment" weight: 240 toc: true -search: false +search: + index: false --- Please see the dedicated [Kubernetes Documentation](../kubernetes/introduction/index.md). diff --git a/docs/content/en/integration/kubernetes/_index.md b/docs/content/en/integration/kubernetes/_index.md index 945e8c52..4c36ba27 100644 --- a/docs/content/en/integration/kubernetes/_index.md +++ b/docs/content/en/integration/kubernetes/_index.md @@ -2,7 +2,7 @@ title: "Kubernetes" description: "Kubernetes Integration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 500 diff --git a/docs/content/en/integration/kubernetes/chart.md b/docs/content/en/integration/kubernetes/chart.md index 2b7f30ae..31221a1e 100644 --- a/docs/content/en/integration/kubernetes/chart.md +++ b/docs/content/en/integration/kubernetes/chart.md @@ -2,7 +2,7 @@ title: "Chart" description: "A guide to using the Authelia helm chart to integrate Authelia with Kubernetes" lead: "A guide to using the Authelia helm chart to integrate Authelia with Kubernetes." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-22T22:58:23+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/kubernetes/introduction/index.md b/docs/content/en/integration/kubernetes/introduction/index.md index 6af7af97..675ecf77 100644 --- a/docs/content/en/integration/kubernetes/introduction/index.md +++ b/docs/content/en/integration/kubernetes/introduction/index.md @@ -2,7 +2,7 @@ title: "Kubernetes" description: "An introduction into integrating Authelia with Kubernetes." lead: "An introduction into integrating Authelia with Kubernetes." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/kubernetes/nginx-ingress.md b/docs/content/en/integration/kubernetes/nginx-ingress.md index edc64eb9..35f9bb2a 100644 --- a/docs/content/en/integration/kubernetes/nginx-ingress.md +++ b/docs/content/en/integration/kubernetes/nginx-ingress.md @@ -2,7 +2,7 @@ title: "NGINX Ingress" description: "A guide to integrating Authelia with the NGINX Kubernetes Ingress." lead: "A guide to integrating Authelia with the NGINX Kubernetes Ingress." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/kubernetes/secrets.md b/docs/content/en/integration/kubernetes/secrets.md index e2fd07e7..59fcec0e 100644 --- a/docs/content/en/integration/kubernetes/secrets.md +++ b/docs/content/en/integration/kubernetes/secrets.md @@ -2,7 +2,7 @@ title: "Secrets" description: "A guide to using secrets when integrating Authelia with Kubernetes." lead: "A guide to using secrets when integrating Authelia with Kubernetes." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-22T22:58:23+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/kubernetes/traefik-ingress.md b/docs/content/en/integration/kubernetes/traefik-ingress.md index 2f450256..65486362 100644 --- a/docs/content/en/integration/kubernetes/traefik-ingress.md +++ b/docs/content/en/integration/kubernetes/traefik-ingress.md @@ -2,7 +2,7 @@ title: "Traefik Ingress" description: "A guide to integrating Authelia with the Traefik Kubernetes Ingress." lead: "A guide to integrating Authelia with the Traefik Kubernetes Ingress." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/ldap/_index.md b/docs/content/en/integration/ldap/_index.md index bc5c9565..9299ce83 100644 --- a/docs/content/en/integration/ldap/_index.md +++ b/docs/content/en/integration/ldap/_index.md @@ -1,8 +1,8 @@ --- -title : "LDAP" +title: "LDAP" description: "LDAP Integration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 700 diff --git a/docs/content/en/integration/ldap/introduction.md b/docs/content/en/integration/ldap/introduction.md index bba3c24b..3d20552f 100644 --- a/docs/content/en/integration/ldap/introduction.md +++ b/docs/content/en/integration/ldap/introduction.md @@ -2,7 +2,7 @@ title: "LDAP" description: "An introduction into integrating Authelia with LDAP." lead: "An introduction into integrating Authelia with LDAP." -date: 2022-05-31T11:13:56+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/openid-connect/_index.md b/docs/content/en/integration/openid-connect/_index.md index 517531b9..2a92610d 100644 --- a/docs/content/en/integration/openid-connect/_index.md +++ b/docs/content/en/integration/openid-connect/_index.md @@ -2,8 +2,10 @@ title: "OpenID Connect" description: "OpenID Connect Integration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 600 +search: + index: false --- diff --git a/docs/content/en/integration/openid-connect/bookstack/index.md b/docs/content/en/integration/openid-connect/bookstack/index.md index 3f10367f..86106bd4 100644 --- a/docs/content/en/integration/openid-connect/bookstack/index.md +++ b/docs/content/en/integration/openid-connect/bookstack/index.md @@ -2,7 +2,7 @@ title: "BookStack" description: "Integrating BookStack with Authelia via OpenID Connect." lead: "" -date: 2022-05-16T21:15:52+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/openid-connect/cloudflare-zerotrust/index.md b/docs/content/en/integration/openid-connect/cloudflare-zerotrust/index.md index 135b6e02..db59ed94 100644 --- a/docs/content/en/integration/openid-connect/cloudflare-zerotrust/index.md +++ b/docs/content/en/integration/openid-connect/cloudflare-zerotrust/index.md @@ -2,7 +2,7 @@ title: "Cloudflare Zero Trust" description: "Integrating Cloudflare Zero Trust with Authelia via OpenID Connect." lead: "" -date: 2022-05-17T07:45:58+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/openid-connect/gitlab/index.md b/docs/content/en/integration/openid-connect/gitlab/index.md index 26873bda..a0c414ce 100644 --- a/docs/content/en/integration/openid-connect/gitlab/index.md +++ b/docs/content/en/integration/openid-connect/gitlab/index.md @@ -2,7 +2,7 @@ title: "GitLab" description: "Integrating GitLab with Authelia via OpenID Connect." lead: "" -date: 2022-05-16T21:15:52+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/openid-connect/grafana/index.md b/docs/content/en/integration/openid-connect/grafana/index.md index 350738ca..3ee03356 100644 --- a/docs/content/en/integration/openid-connect/grafana/index.md +++ b/docs/content/en/integration/openid-connect/grafana/index.md @@ -2,7 +2,7 @@ title: "Grafana" description: "Integrating Grafana with Authelia via OpenID Connect." lead: "" -date: 2022-05-16T21:15:52+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/openid-connect/harbor/index.md b/docs/content/en/integration/openid-connect/harbor/index.md index 331ddfca..bd7bd1b4 100644 --- a/docs/content/en/integration/openid-connect/harbor/index.md +++ b/docs/content/en/integration/openid-connect/harbor/index.md @@ -2,7 +2,7 @@ title: "Harbor" description: "Integrating Harbor with Authelia via OpenID Connect." lead: "" -date: 2022-05-16T21:44:13+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/openid-connect/hashicorp-vault/index.md b/docs/content/en/integration/openid-connect/hashicorp-vault/index.md index 4a0db13c..04b50f3f 100644 --- a/docs/content/en/integration/openid-connect/hashicorp-vault/index.md +++ b/docs/content/en/integration/openid-connect/hashicorp-vault/index.md @@ -2,7 +2,7 @@ title: "HashiCorp Vault" description: "Integrating HashiCorp Vault with Authelia via OpenID Connect." lead: "" -date: 2022-05-16T21:15:52+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/openid-connect/introduction.md b/docs/content/en/integration/openid-connect/introduction.md index 72fa4917..c452c470 100644 --- a/docs/content/en/integration/openid-connect/introduction.md +++ b/docs/content/en/integration/openid-connect/introduction.md @@ -2,7 +2,7 @@ title: "OpenID Connect" description: "An introduction into integrating the Authelia OpenID Connect Provider with an OpenID Connect relying party" lead: "An introduction into integrating the Authelia OpenID Connect Provider with an OpenID Connect relying party." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/openid-connect/nextcloud/index.md b/docs/content/en/integration/openid-connect/nextcloud/index.md index 435f15c3..ced7a318 100644 --- a/docs/content/en/integration/openid-connect/nextcloud/index.md +++ b/docs/content/en/integration/openid-connect/nextcloud/index.md @@ -2,7 +2,7 @@ title: "Nextcloud" description: "Integrating Nextcloud with Authelia via OpenID Connect." lead: "" -date: 2022-05-16T21:57:40+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/openid-connect/portainer/index.md b/docs/content/en/integration/openid-connect/portainer/index.md index 13fb579e..fe6bf47e 100644 --- a/docs/content/en/integration/openid-connect/portainer/index.md +++ b/docs/content/en/integration/openid-connect/portainer/index.md @@ -2,7 +2,7 @@ title: "Portainer" description: "Integrating Portainer with Authelia via OpenID Connect." lead: "" -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/openid-connect/proxmox/index.md b/docs/content/en/integration/openid-connect/proxmox/index.md index 7e0918af..3d6551d9 100644 --- a/docs/content/en/integration/openid-connect/proxmox/index.md +++ b/docs/content/en/integration/openid-connect/proxmox/index.md @@ -2,7 +2,7 @@ title: "Proxmox" description: "Integrating Proxmox with Authelia via OpenID Connect." lead: "" -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/openid-connect/seafile/index.md b/docs/content/en/integration/openid-connect/seafile/index.md index 9b7520e2..e4d6aaca 100644 --- a/docs/content/en/integration/openid-connect/seafile/index.md +++ b/docs/content/en/integration/openid-connect/seafile/index.md @@ -2,7 +2,7 @@ title: "Seafile" description: "Integrating Seafile with Authelia via OpenID Connect." lead: "" -date: 2022-05-17T09:17:01+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/openid-connect/synapse/index.md b/docs/content/en/integration/openid-connect/synapse/index.md index 9f01295e..485cab49 100644 --- a/docs/content/en/integration/openid-connect/synapse/index.md +++ b/docs/content/en/integration/openid-connect/synapse/index.md @@ -2,7 +2,7 @@ title: "Synapse" description: "Integrating Synapse with Authelia via OpenID Connect." lead: "" -date: 2022-05-17T09:17:01+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/prologue/_index.md b/docs/content/en/integration/prologue/_index.md index 3d3912df..47d11312 100644 --- a/docs/content/en/integration/prologue/_index.md +++ b/docs/content/en/integration/prologue/_index.md @@ -2,7 +2,7 @@ title: "Prologue" description: "Integration Prologue" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 100 diff --git a/docs/content/en/integration/prologue/get-started.md b/docs/content/en/integration/prologue/get-started.md index 7130db90..421689e7 100644 --- a/docs/content/en/integration/prologue/get-started.md +++ b/docs/content/en/integration/prologue/get-started.md @@ -2,7 +2,7 @@ title: "Get Started" description: "A getting started guide for Authelia." lead: "This document serves as a get started guide for Authelia. It contains links to various sections and has some key notes in questions frequently asked by people looking to perform setup for the first time." -date: 2022-05-27T22:24:38+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/prologue/introduction.md b/docs/content/en/integration/prologue/introduction.md index 6405b21d..21aa55a8 100644 --- a/docs/content/en/integration/prologue/introduction.md +++ b/docs/content/en/integration/prologue/introduction.md @@ -2,7 +2,7 @@ title: "Prologue" description: "An introduction into integrating Authelia with a product." lead: "An introduction into integrating Authelia within your architecture." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/proxies/_index.md b/docs/content/en/integration/proxies/_index.md index 045d2294..ee67ff44 100644 --- a/docs/content/en/integration/proxies/_index.md +++ b/docs/content/en/integration/proxies/_index.md @@ -1,8 +1,8 @@ --- -title : "Proxies" +title: "Proxies" description: "Proxies Integration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 300 diff --git a/docs/content/en/integration/proxies/caddy.md b/docs/content/en/integration/proxies/caddy.md index 9a6f151c..220136c0 100644 --- a/docs/content/en/integration/proxies/caddy.md +++ b/docs/content/en/integration/proxies/caddy.md @@ -2,7 +2,7 @@ title: "Caddy" description: "An integration guide for Authelia and the Caddy reverse proxy" lead: "A guide on integrating Authelia with the Caddy reverse proxy." -date: 2022-05-13T12:06:00+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/proxies/envoy.md b/docs/content/en/integration/proxies/envoy.md index 1563706e..342ec0c1 100644 --- a/docs/content/en/integration/proxies/envoy.md +++ b/docs/content/en/integration/proxies/envoy.md @@ -2,7 +2,7 @@ title: "Envoy" description: "An integration guide for Authelia and the Envoy reverse proxy" lead: "A guide on integrating Authelia with the Envoy reverse proxy." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/proxies/fowarded-headers/index.md b/docs/content/en/integration/proxies/fowarded-headers/index.md index 8eb17fe8..733f6bf9 100644 --- a/docs/content/en/integration/proxies/fowarded-headers/index.md +++ b/docs/content/en/integration/proxies/fowarded-headers/index.md @@ -2,7 +2,7 @@ title: "Forwarded Headers" description: "An introduction into the importance of forwarded headers coming from trusted sources" lead: "An introduction into the importance of forwarded headers coming from trusted sources." -date: 2022-05-18T13:05:25+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/proxies/haproxy.md b/docs/content/en/integration/proxies/haproxy.md index 49e320fe..f5a8dd17 100644 --- a/docs/content/en/integration/proxies/haproxy.md +++ b/docs/content/en/integration/proxies/haproxy.md @@ -2,7 +2,7 @@ title: "HAProxy" description: "An integration guide for Authelia and the HAProxy reverse proxy" lead: "A guide on integrating Authelia with the HAProxy reverse proxy." -date: 2022-03-20T20:23:41+11:00 +date: 2020-02-29T01:43:59+01:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/proxies/introduction.md b/docs/content/en/integration/proxies/introduction.md index 2c76533f..a747a1fa 100644 --- a/docs/content/en/integration/proxies/introduction.md +++ b/docs/content/en/integration/proxies/introduction.md @@ -2,7 +2,7 @@ title: "Proxies" description: "An integration guide for Authelia and several supported reverse proxies" lead: "An introduction into integrating Authelia with a reverse proxy." -date: 2022-03-20T20:23:41+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/proxies/nginx-proxy-manager.md b/docs/content/en/integration/proxies/nginx-proxy-manager.md index aff28fba..07c33f6c 100644 --- a/docs/content/en/integration/proxies/nginx-proxy-manager.md +++ b/docs/content/en/integration/proxies/nginx-proxy-manager.md @@ -2,7 +2,7 @@ title: "NGINX Proxy Manager" description: "An integration guide for Authelia and the NGINX Proxy Manager reverse proxy" lead: "A guide on integrating Authelia with NGINX Proxy Manager." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/proxies/nginx.md b/docs/content/en/integration/proxies/nginx.md index 9b87362f..6508bca8 100644 --- a/docs/content/en/integration/proxies/nginx.md +++ b/docs/content/en/integration/proxies/nginx.md @@ -2,7 +2,7 @@ title: "NGINX" description: "An integration guide for Authelia and the NGINX reverse proxy" lead: "A guide on integrating Authelia with the nginx reverse proxy." -date: 2022-03-20T20:23:41+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/proxies/skipper.md b/docs/content/en/integration/proxies/skipper.md index 119cf493..fa56e3c5 100644 --- a/docs/content/en/integration/proxies/skipper.md +++ b/docs/content/en/integration/proxies/skipper.md @@ -2,7 +2,7 @@ title: "Skipper" description: "An integration guide for Authelia and the Skipper reverse proxy" lead: "A guide on integrating Authelia with the Skipper reverse proxy." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/proxies/support.md b/docs/content/en/integration/proxies/support.md index f1e468ea..17129034 100644 --- a/docs/content/en/integration/proxies/support.md +++ b/docs/content/en/integration/proxies/support.md @@ -2,7 +2,7 @@ title: "Support" description: "An support matrix for Authelia and several supported reverse proxies" lead: "This documentation details a support matrix for Authelia features and specific reverse proxies as well as several caveats etc." -date: 2022-05-13T12:34:15+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/proxies/swag.md b/docs/content/en/integration/proxies/swag.md index 049cac2b..f8097d9b 100644 --- a/docs/content/en/integration/proxies/swag.md +++ b/docs/content/en/integration/proxies/swag.md @@ -2,7 +2,7 @@ title: "SWAG" description: "An integration guide for Authelia and the SWAG reverse proxy" lead: "A guide on integrating Authelia with SWAG." -date: 2022-05-17T10:57:38+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/proxies/traefik.md b/docs/content/en/integration/proxies/traefik.md index 5b09ab43..70f0b978 100644 --- a/docs/content/en/integration/proxies/traefik.md +++ b/docs/content/en/integration/proxies/traefik.md @@ -2,7 +2,7 @@ title: "Traefik" description: "An integration guide for Authelia and the Traefik reverse proxy" lead: "A guide on integrating Authelia with the Traefik reverse proxy." -date: 2022-03-20T20:23:41+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/proxies/traefikv1.md b/docs/content/en/integration/proxies/traefikv1.md index 65f2bf0e..1867bf3b 100644 --- a/docs/content/en/integration/proxies/traefikv1.md +++ b/docs/content/en/integration/proxies/traefikv1.md @@ -2,7 +2,7 @@ title: "Traefik v1" description: "An integration guide for Authelia and the Traefik v1 reverse proxy" lead: "A guide on integrating Authelia with the Traefik reverse proxy." -date: 2022-03-20T20:23:41+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/trusted-header-sso/_index.md b/docs/content/en/integration/trusted-header-sso/_index.md index 73fbc7f4..9ab6f90a 100644 --- a/docs/content/en/integration/trusted-header-sso/_index.md +++ b/docs/content/en/integration/trusted-header-sso/_index.md @@ -1,8 +1,8 @@ --- -title : "Trusted Header SSO" +title: "Trusted Header SSO" description: "Trusted Header SSO Integration" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 400 diff --git a/docs/content/en/integration/trusted-header-sso/introduction.md b/docs/content/en/integration/trusted-header-sso/introduction.md index c843d503..6e2e3718 100644 --- a/docs/content/en/integration/trusted-header-sso/introduction.md +++ b/docs/content/en/integration/trusted-header-sso/introduction.md @@ -2,7 +2,7 @@ title: "Trusted Header SSO" description: "Trusted Header SSO Integration" lead: "An introduction into integrating Authelia with an application which implements authentication via trusted headers." -date: 2022-05-15T13:52:27+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/trusted-header-sso/jira/index.md b/docs/content/en/integration/trusted-header-sso/jira/index.md index 4347ff84..1038c628 100644 --- a/docs/content/en/integration/trusted-header-sso/jira/index.md +++ b/docs/content/en/integration/trusted-header-sso/jira/index.md @@ -2,7 +2,7 @@ title: "Jira" description: "Trusted Header SSO Integration for Jira" lead: "" -date: 2022-05-16T21:15:52+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/integration/trusted-header-sso/organizr/index.md b/docs/content/en/integration/trusted-header-sso/organizr/index.md index 37ddd1ea..256887ee 100644 --- a/docs/content/en/integration/trusted-header-sso/organizr/index.md +++ b/docs/content/en/integration/trusted-header-sso/organizr/index.md @@ -2,7 +2,7 @@ title: "Organizr" description: "Trusted Header SSO Integration for Organizr" lead: "" -date: 2022-05-16T16:34:50+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/_index.md b/docs/content/en/overview/_index.md index 458611aa..b6a8a5da 100644 --- a/docs/content/en/overview/_index.md +++ b/docs/content/en/overview/_index.md @@ -1,8 +1,8 @@ --- -title : "Overview" +title: "Overview" description: "Authelia Overview" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] --- diff --git a/docs/content/en/overview/authentication/_index.md b/docs/content/en/overview/authentication/_index.md index dda7a5ce..e2612787 100644 --- a/docs/content/en/overview/authentication/_index.md +++ b/docs/content/en/overview/authentication/_index.md @@ -1,8 +1,8 @@ --- -title : "Authentication" +title: "Authentication" description: "Authentication" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 200 diff --git a/docs/content/en/overview/authentication/first-factor/index.md b/docs/content/en/overview/authentication/first-factor/index.md index 431134e9..b9435b1f 100644 --- a/docs/content/en/overview/authentication/first-factor/index.md +++ b/docs/content/en/overview/authentication/first-factor/index.md @@ -2,7 +2,7 @@ title: "First Factor" description: "Authelia utilizes the standard username and password combination for first factor authentication." lead: "Authelia utilizes the standard username and password combination for first factor authentication." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/authentication/introduction.md b/docs/content/en/overview/authentication/introduction.md index 11183c28..9d3c0f63 100644 --- a/docs/content/en/overview/authentication/introduction.md +++ b/docs/content/en/overview/authentication/introduction.md @@ -2,7 +2,7 @@ title: "Authentication" description: "An overview of a authentication." lead: "An overview of a authentication." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/authentication/one-time-password/index.md b/docs/content/en/overview/authentication/one-time-password/index.md index b1f45c86..9bbb1942 100644 --- a/docs/content/en/overview/authentication/one-time-password/index.md +++ b/docs/content/en/overview/authentication/one-time-password/index.md @@ -2,7 +2,7 @@ title: "One Time Password" description: "Authelia utilizes one time passwords as one of it's second factor authentication methods." lead: "Authelia utilizes one time passwords as one of it's second factor authentication methods." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/authentication/password-policy/index.md b/docs/content/en/overview/authentication/password-policy/index.md index 1d4d6d63..0fb4df20 100644 --- a/docs/content/en/overview/authentication/password-policy/index.md +++ b/docs/content/en/overview/authentication/password-policy/index.md @@ -2,7 +2,7 @@ title: "Password Policy" description: "Authelia implements a password policy feature." lead: "Authelia implements a password policy feature." -date: 2022-04-12T14:40:22+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/authentication/push-notification/index.md b/docs/content/en/overview/authentication/push-notification/index.md index 87e0960d..e509f22d 100644 --- a/docs/content/en/overview/authentication/push-notification/index.md +++ b/docs/content/en/overview/authentication/push-notification/index.md @@ -2,7 +2,7 @@ title: "Duo / Mobile Push" description: "Authelia utilizes Duo Push Notifications as one of it's second factor authentication methods." lead: "Authelia utilizes Duo Push Notifications as one of it's second factor authentication methods." -date: 2022-03-20T22:52:38+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/authentication/security-key/index.md b/docs/content/en/overview/authentication/security-key/index.md index c54b0eff..110bdcb7 100644 --- a/docs/content/en/overview/authentication/security-key/index.md +++ b/docs/content/en/overview/authentication/security-key/index.md @@ -2,7 +2,7 @@ title: "Security Key" description: "Authelia utilizes WebAuthn security keys as one of it's second factor authentication methods." lead: "Authelia utilizes WebAuthn security keys as one of it's second factor authentication methods." -date: 2022-03-20T12:52:27+11:00 +date: 2020-02-29T01:43:59+01:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/authorization/_index.md b/docs/content/en/overview/authorization/_index.md index 0ade0218..6503fd63 100644 --- a/docs/content/en/overview/authorization/_index.md +++ b/docs/content/en/overview/authorization/_index.md @@ -1,8 +1,8 @@ --- -title : "Authorization" +title: "Authorization" description: "Authorization Overview" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 300 diff --git a/docs/content/en/overview/authorization/access-control.md b/docs/content/en/overview/authorization/access-control.md index 0f913856..29356faf 100644 --- a/docs/content/en/overview/authorization/access-control.md +++ b/docs/content/en/overview/authorization/access-control.md @@ -2,7 +2,7 @@ title: "Access Control" description: "Access Control is the main authorization system in Authelia." lead: "Access Control is the main authorization system in Authelia." -date: 2022-03-20T22:52:38+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/authorization/regulation.md b/docs/content/en/overview/authorization/regulation.md index c29eef49..6bcc951d 100644 --- a/docs/content/en/overview/authorization/regulation.md +++ b/docs/content/en/overview/authorization/regulation.md @@ -2,7 +2,7 @@ title: "Regulation" description: "Regulation of failed attempts is an important function of an IAM system." lead: "Regulation of failed attempts is an important function of an IAM system." -date: 2022-03-20T22:52:38+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/authorization/statelessness.md b/docs/content/en/overview/authorization/statelessness.md index 01087317..9f70546c 100644 --- a/docs/content/en/overview/authorization/statelessness.md +++ b/docs/content/en/overview/authorization/statelessness.md @@ -2,7 +2,7 @@ title: "Statelessness" description: "Statelessness is the ability for a system to operate without an in-memory state. A crash could result in loss of the in-memory state causing a bad user experience." lead: "Statelessness is the ability for a system to operate without an in-memory state. A crash could result in loss of the in-memory state causing a bad user experience." -date: 2022-03-20T22:52:38+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/prologue/_index.md b/docs/content/en/overview/prologue/_index.md index 2a713f8d..9762605b 100644 --- a/docs/content/en/overview/prologue/_index.md +++ b/docs/content/en/overview/prologue/_index.md @@ -1,8 +1,8 @@ --- -title : "Prologue" +title: "Prologue" description: "Overview Prologue" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 100 diff --git a/docs/content/en/overview/prologue/architecture/index.md b/docs/content/en/overview/prologue/architecture/index.md index dc90ad74..9b012bcd 100644 --- a/docs/content/en/overview/prologue/architecture/index.md +++ b/docs/content/en/overview/prologue/architecture/index.md @@ -2,7 +2,7 @@ title: "Architecture" description: "An overview of the Authelia architecture." lead: "An overview of the Authelia architecture." -date: 2022-05-13T12:34:15+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/prologue/introduction.md b/docs/content/en/overview/prologue/introduction.md index 5e130725..df3b6392 100644 --- a/docs/content/en/overview/prologue/introduction.md +++ b/docs/content/en/overview/prologue/introduction.md @@ -2,7 +2,7 @@ title: "Prologue" description: "An introduction into the Authelia overview." lead: "An introduction into the Authelia overview." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/prologue/supported-proxies.md b/docs/content/en/overview/prologue/supported-proxies.md index 041d1cb9..3aa9de3e 100644 --- a/docs/content/en/overview/prologue/supported-proxies.md +++ b/docs/content/en/overview/prologue/supported-proxies.md @@ -2,7 +2,7 @@ title: "Supported Proxies" description: "An introduction into the Authelia overview." lead: "An introduction into the Authelia overview." -date: 2022-05-13T12:34:15+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/security/_index.md b/docs/content/en/overview/security/_index.md index 2f888d07..2473ccf1 100644 --- a/docs/content/en/overview/security/_index.md +++ b/docs/content/en/overview/security/_index.md @@ -1,8 +1,8 @@ --- -title : "Security" +title: "Security" description: "Overview Prologue" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 400 diff --git a/docs/content/en/overview/security/introduction.md b/docs/content/en/overview/security/introduction.md index ee143fa8..83d4ec41 100644 --- a/docs/content/en/overview/security/introduction.md +++ b/docs/content/en/overview/security/introduction.md @@ -2,7 +2,7 @@ title: "Security" description: "An overview introduction into Authelia's security features." lead: "An overview introduction into Authelia's security features." -date: 2022-05-13T12:34:15+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/security/measures.md b/docs/content/en/overview/security/measures.md index 368bdfeb..c758e9d9 100644 --- a/docs/content/en/overview/security/measures.md +++ b/docs/content/en/overview/security/measures.md @@ -2,7 +2,7 @@ title: "Measures" description: "An overview of the security measures Authelia implements." lead: "An overview of the security measures Authelia implements." -date: 2022-05-13T12:34:15+10:00 +date: 2018-08-26T23:46:15+02:00 draft: false images: [] menu: diff --git a/docs/content/en/overview/security/threat-model.md b/docs/content/en/overview/security/threat-model.md index 9e2bdcf1..812ee304 100644 --- a/docs/content/en/overview/security/threat-model.md +++ b/docs/content/en/overview/security/threat-model.md @@ -2,7 +2,7 @@ title: "Threat Model" description: "An overview of the Authelia threat model." lead: "An overview of the Authelia threat model." -date: 2022-05-13T12:34:15+10:00 +date: 2020-04-16T18:12:41+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/_index.md b/docs/content/en/reference/_index.md index 89df12c3..f86bfc0f 100644 --- a/docs/content/en/reference/_index.md +++ b/docs/content/en/reference/_index.md @@ -1,8 +1,8 @@ --- -title : "Reference" +title: "Reference" description: "Authelia Reference" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] --- diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto.md b/docs/content/en/reference/cli/authelia/authelia_crypto.md index cb61ce8a..9f95f2c9 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto.md @@ -2,7 +2,7 @@ title: "authelia crypto" description: "Reference for the authelia crypto command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate.md b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate.md index 66fbf3fb..2d82e9a1 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate.md @@ -2,7 +2,7 @@ title: "authelia crypto certificate" description: "Reference for the authelia crypto certificate command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ecdsa.md b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ecdsa.md index 6e0d9208..8c2b72f9 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ecdsa.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ecdsa.md @@ -2,7 +2,7 @@ title: "authelia crypto certificate ecdsa" description: "Reference for the authelia crypto certificate ecdsa command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ecdsa_generate.md b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ecdsa_generate.md index dcbe9872..4752213d 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ecdsa_generate.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ecdsa_generate.md @@ -2,7 +2,7 @@ title: "authelia crypto certificate ecdsa generate" description: "Reference for the authelia crypto certificate ecdsa generate command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ecdsa_request.md b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ecdsa_request.md index 81889a92..f476c72f 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ecdsa_request.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ecdsa_request.md @@ -2,7 +2,7 @@ title: "authelia crypto certificate ecdsa request" description: "Reference for the authelia crypto certificate ecdsa request command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ed25519.md b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ed25519.md index 8dced8f3..bf16b286 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ed25519.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ed25519.md @@ -2,7 +2,7 @@ title: "authelia crypto certificate ed25519" description: "Reference for the authelia crypto certificate ed25519 command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ed25519_generate.md b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ed25519_generate.md index 56dc593f..73c597b0 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ed25519_generate.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ed25519_generate.md @@ -2,7 +2,7 @@ title: "authelia crypto certificate ed25519 generate" description: "Reference for the authelia crypto certificate ed25519 generate command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ed25519_request.md b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ed25519_request.md index 5dea9ada..d46eae4f 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ed25519_request.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_ed25519_request.md @@ -2,7 +2,7 @@ title: "authelia crypto certificate ed25519 request" description: "Reference for the authelia crypto certificate ed25519 request command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_rsa.md b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_rsa.md index 14e28a1e..681d197b 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_rsa.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_rsa.md @@ -2,7 +2,7 @@ title: "authelia crypto certificate rsa" description: "Reference for the authelia crypto certificate rsa command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_rsa_generate.md b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_rsa_generate.md index 3dfc1aa3..0f2e1ee8 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_rsa_generate.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_rsa_generate.md @@ -2,7 +2,7 @@ title: "authelia crypto certificate rsa generate" description: "Reference for the authelia crypto certificate rsa generate command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_rsa_request.md b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_rsa_request.md index fa2f5eec..d1a73643 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_rsa_request.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_certificate_rsa_request.md @@ -2,7 +2,7 @@ title: "authelia crypto certificate rsa request" description: "Reference for the authelia crypto certificate rsa request command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_pair.md b/docs/content/en/reference/cli/authelia/authelia_crypto_pair.md index cda36b0d..1f5f2339 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_pair.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_pair.md @@ -2,7 +2,7 @@ title: "authelia crypto pair" description: "Reference for the authelia crypto pair command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ecdsa.md b/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ecdsa.md index 51fd7eea..cac62879 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ecdsa.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ecdsa.md @@ -2,7 +2,7 @@ title: "authelia crypto pair ecdsa" description: "Reference for the authelia crypto pair ecdsa command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ecdsa_generate.md b/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ecdsa_generate.md index 84b9c4ab..64a5d270 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ecdsa_generate.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ecdsa_generate.md @@ -2,7 +2,7 @@ title: "authelia crypto pair ecdsa generate" description: "Reference for the authelia crypto pair ecdsa generate command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ed25519.md b/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ed25519.md index e7ca06d4..244397f5 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ed25519.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ed25519.md @@ -2,7 +2,7 @@ title: "authelia crypto pair ed25519" description: "Reference for the authelia crypto pair ed25519 command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ed25519_generate.md b/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ed25519_generate.md index 6ee450a5..3438e3cf 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ed25519_generate.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_pair_ed25519_generate.md @@ -2,7 +2,7 @@ title: "authelia crypto pair ed25519 generate" description: "Reference for the authelia crypto pair ed25519 generate command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_pair_rsa.md b/docs/content/en/reference/cli/authelia/authelia_crypto_pair_rsa.md index c47386dd..0397e8fe 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_pair_rsa.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_pair_rsa.md @@ -2,7 +2,7 @@ title: "authelia crypto pair rsa" description: "Reference for the authelia crypto pair rsa command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/cli/authelia/authelia_crypto_pair_rsa_generate.md b/docs/content/en/reference/cli/authelia/authelia_crypto_pair_rsa_generate.md index b806a62a..627b8437 100644 --- a/docs/content/en/reference/cli/authelia/authelia_crypto_pair_rsa_generate.md +++ b/docs/content/en/reference/cli/authelia/authelia_crypto_pair_rsa_generate.md @@ -2,7 +2,7 @@ title: "authelia crypto pair rsa generate" description: "Reference for the authelia crypto pair rsa generate command." lead: "" -date: 2022-06-27T12:16:00+10:00 +date: 2022-06-27T18:27:57+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/guides/_index.md b/docs/content/en/reference/guides/_index.md index a3fa35d3..07878092 100644 --- a/docs/content/en/reference/guides/_index.md +++ b/docs/content/en/reference/guides/_index.md @@ -2,7 +2,7 @@ title: "Guides" description: "Reference Prologue" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 200 diff --git a/docs/content/en/reference/guides/branding.md b/docs/content/en/reference/guides/branding.md index 3583fbea..e24ab1e9 100644 --- a/docs/content/en/reference/guides/branding.md +++ b/docs/content/en/reference/guides/branding.md @@ -2,7 +2,7 @@ title: "Branding" description: "This guide highlights information about Authelia's branding assets" lead: "This guide highlights information about Authelia's branding assets." -date: 2022-05-31T11:13:56+10:00 +date: 2022-06-20T10:05:55+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/guides/introduction.md b/docs/content/en/reference/guides/introduction.md index 65784543..1d04e40b 100644 --- a/docs/content/en/reference/guides/introduction.md +++ b/docs/content/en/reference/guides/introduction.md @@ -2,7 +2,7 @@ title: "Guides" description: "A collection of reference guides" lead: "This section contains reference guides for Authelia." -date: 2022-05-31T11:13:56+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/guides/ldap.md b/docs/content/en/reference/guides/ldap.md index 48dbdb8d..0867471b 100644 --- a/docs/content/en/reference/guides/ldap.md +++ b/docs/content/en/reference/guides/ldap.md @@ -2,7 +2,7 @@ title: "LDAP" description: "A reference guide on the LDAP implementation specifics" lead: "This section contains reference documentation for Authelia's LDAP implementation specifics." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-17T21:03:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/guides/log-messages.md b/docs/content/en/reference/guides/log-messages.md index 88acca5d..6d5d2c11 100644 --- a/docs/content/en/reference/guides/log-messages.md +++ b/docs/content/en/reference/guides/log-messages.md @@ -2,7 +2,7 @@ title: "Log Messages" description: "A collection of log message reference information" lead: "This section contains log message references for Authelia." -date: 2022-06-09T18:25:02+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/guides/metrics.md b/docs/content/en/reference/guides/metrics.md index 933702d4..a6020a4d 100644 --- a/docs/content/en/reference/guides/metrics.md +++ b/docs/content/en/reference/guides/metrics.md @@ -2,7 +2,7 @@ title: "Telemetry" description: "A reference guide on the telemetry collection" lead: "This section contains reference documentation for Authelia's telemetry systems." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/guides/notification-templates.md b/docs/content/en/reference/guides/notification-templates.md index f56cbb29..80855c60 100644 --- a/docs/content/en/reference/guides/notification-templates.md +++ b/docs/content/en/reference/guides/notification-templates.md @@ -2,7 +2,7 @@ title: "Notification Templates" description: "A reference guide on overriding notification templates" lead: "This section contains reference documentation for Authelia's notification templates." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/guides/passwords.md b/docs/content/en/reference/guides/passwords.md index e7cc7b3c..87a56bd8 100644 --- a/docs/content/en/reference/guides/passwords.md +++ b/docs/content/en/reference/guides/passwords.md @@ -2,7 +2,7 @@ title: "Passwords" description: "A reference guide on passwords and hashing etc" lead: "This section contains reference documentation for Authelia." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/guides/server-asset-overrides.md b/docs/content/en/reference/guides/server-asset-overrides.md index bf8d277d..d24790fa 100644 --- a/docs/content/en/reference/guides/server-asset-overrides.md +++ b/docs/content/en/reference/guides/server-asset-overrides.md @@ -2,7 +2,7 @@ title: "Server Asset Overrides" description: "A reference guide on overriding server assets" lead: "This section contains reference documentation for Authelia's server asset override capabilities." -date: 2022-06-02T20:24:29+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/reference/prologue/_index.md b/docs/content/en/reference/prologue/_index.md index 5f9246cf..d46f1041 100644 --- a/docs/content/en/reference/prologue/_index.md +++ b/docs/content/en/reference/prologue/_index.md @@ -2,7 +2,7 @@ title: "Reference" description: "Reference Prologue" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 100 diff --git a/docs/content/en/reference/prologue/introduction.md b/docs/content/en/reference/prologue/introduction.md index 40e72f39..bb580e08 100644 --- a/docs/content/en/reference/prologue/introduction.md +++ b/docs/content/en/reference/prologue/introduction.md @@ -2,7 +2,7 @@ title: "Prologue" description: "An introduction into Authelia reference documentation." lead: "This section contains reference documentation for Authelia." -date: 2022-05-31T11:13:56+10:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/roadmap/_index.md b/docs/content/en/roadmap/_index.md index ae274b08..07a4117a 100644 --- a/docs/content/en/roadmap/_index.md +++ b/docs/content/en/roadmap/_index.md @@ -1,8 +1,8 @@ --- -title : "Roadmap" +title: "Roadmap" description: "Authelia Roadmap" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] --- diff --git a/docs/content/en/roadmap/active/_index.md b/docs/content/en/roadmap/active/_index.md index 979d2cd7..6e228bcf 100644 --- a/docs/content/en/roadmap/active/_index.md +++ b/docs/content/en/roadmap/active/_index.md @@ -1,8 +1,8 @@ --- -title : "Active" +title: "Active" description: "Active Roadmap Details" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 200 diff --git a/docs/content/en/roadmap/active/dashboard-control-panel.md b/docs/content/en/roadmap/active/dashboard-control-panel.md index a7f9bd37..ff6ae1b8 100644 --- a/docs/content/en/roadmap/active/dashboard-control-panel.md +++ b/docs/content/en/roadmap/active/dashboard-control-panel.md @@ -2,7 +2,7 @@ title: "Dashboard / Control Panel" description: "Authelia Dashboard Implementation" lead: "A dashboard or control panel for users and administrators to adjust their settings or Authelia's settings is easily one of the most impactful features we can implment." -date: 2022-03-20T21:18:42+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/roadmap/active/internationalization.md b/docs/content/en/roadmap/active/internationalization.md index fa6bbf9e..371fbc4d 100644 --- a/docs/content/en/roadmap/active/internationalization.md +++ b/docs/content/en/roadmap/active/internationalization.md @@ -2,7 +2,7 @@ title: "Internationalization" description: "Authelia Internationalization Implementation" lead: "Implementation of internationalization will make Authelia more accessible to more people." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/roadmap/active/kubernetes-documentation.md b/docs/content/en/roadmap/active/kubernetes-documentation.md index b2a4898c..55eb9946 100644 --- a/docs/content/en/roadmap/active/kubernetes-documentation.md +++ b/docs/content/en/roadmap/active/kubernetes-documentation.md @@ -2,7 +2,7 @@ title: "Kubernetes Documentation" description: "Add better Kubernetes documentation." lead: "While there is some documentation for Kubernetes, and several people have it working, better documentation is needed." -date: 2022-03-20T21:18:42+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/roadmap/active/multi-domain-protection.md b/docs/content/en/roadmap/active/multi-domain-protection.md index 4547e2a2..774272aa 100644 --- a/docs/content/en/roadmap/active/multi-domain-protection.md +++ b/docs/content/en/roadmap/active/multi-domain-protection.md @@ -2,7 +2,7 @@ title: "Multi Domain Protection" description: "Authelia Multi Domain Protection Implementation" lead: "Multi Domain Protection is one of the most requested Authelia features." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/roadmap/active/openid-connect.md b/docs/content/en/roadmap/active/openid-connect.md index d37ffc6c..54b464e9 100644 --- a/docs/content/en/roadmap/active/openid-connect.md +++ b/docs/content/en/roadmap/active/openid-connect.md @@ -2,7 +2,7 @@ title: "OpenID Connect" description: "Authelia OpenID Connect Implementation" lead: "The OpenID Connect Provider role is a very useful but complex feature to enhance interoperability of Authelia with other products. " -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/roadmap/active/webauthn.md b/docs/content/en/roadmap/active/webauthn.md index b277ab02..d195c5ee 100644 --- a/docs/content/en/roadmap/active/webauthn.md +++ b/docs/content/en/roadmap/active/webauthn.md @@ -2,7 +2,7 @@ title: "WebAuthn" description: "Authelia WebAuthn Implementation" lead: "An introduction into the Authelia roadmap." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/content/en/roadmap/prologue/_index.md b/docs/content/en/roadmap/prologue/_index.md index 94e51a16..af237afa 100644 --- a/docs/content/en/roadmap/prologue/_index.md +++ b/docs/content/en/roadmap/prologue/_index.md @@ -1,8 +1,8 @@ --- -title : "Prologue" +title: "Prologue" description: "Roadmap Prologue" lead: "" -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] weight: 100 diff --git a/docs/content/en/roadmap/prologue/introduction.md b/docs/content/en/roadmap/prologue/introduction.md index add3f6b1..10c2dbe7 100644 --- a/docs/content/en/roadmap/prologue/introduction.md +++ b/docs/content/en/roadmap/prologue/introduction.md @@ -2,7 +2,7 @@ title: "Prologue" description: "An introduction into the Authelia roadmap." lead: "An introduction into the Authelia roadmap." -date: 2022-03-20T12:52:27+11:00 +date: 2022-06-15T17:51:47+10:00 draft: false images: [] menu: diff --git a/docs/layouts/.editorconfig b/docs/layouts/.editorconfig new file mode 100644 index 00000000..c6d51ee9 --- /dev/null +++ b/docs/layouts/.editorconfig @@ -0,0 +1,3 @@ + +[*] +insert_final_newline = false diff --git a/docs/layouts/partials/footer/script-footer.html b/docs/layouts/partials/footer/script-footer.html index a68339d4..7240b009 100644 --- a/docs/layouts/partials/footer/script-footer.html +++ b/docs/layouts/partials/footer/script-footer.html @@ -34,9 +34,14 @@ {{ $slice = $slice | append $instantPage -}} {{ end -}} -{{ if .Site.Params.options.flexSearch -}} +{{ $showFlexSearch := .Site.Params.options.flexSearch }} + +{{ if $showFlexSearch -}} {{ $flexSearch := resources.Get "js/vendor/flexsearch/dist/flexsearch.bundle.js" -}} {{ $slice = $slice | append $flexSearch -}} + {{ if and (isset .Site.Params.options "searchsectionsshow") (not (eq .Site.Params.options.searchSectionsShow "ALL")) -}} + {{ $showFlexSearch = or (eq (len .Site.Params.options.searchSectionsShow) 0) (in .Site.Params.options.searchSectionsShow .Section) (and .IsHome (in .Site.Params.options.searchSectionsShow "HomePage")) -}} + {{ end -}} {{ end -}} {{ if .Site.Params.options.darkMode -}} @@ -77,7 +82,7 @@ {{ with .Params.mermaid -}} {{ end -}} -{{ if and (.Site.Params.options.flexSearch) (in .Site.Params.Sections.Search .Section) -}} + {{ if $showFlexSearch -}} {{ end -}} {{ else -}} @@ -102,7 +107,7 @@ {{ with .Params.mermaid -}} {{ end -}} -{{ if and (.Site.Params.options.flexSearch) (in .Site.Params.Sections.Search .Section) -}} + {{ if $showFlexSearch -}} {{ end -}} {{ end -}} diff --git a/docs/layouts/partials/header/header.html b/docs/layouts/partials/header/header.html index 0c4d30ae..93debd52 100644 --- a/docs/layouts/partials/header/header.html +++ b/docs/layouts/partials/header/header.html @@ -111,16 +111,21 @@ {{ end -}} -{{ if in .Site.Params.Sections.Search .Section -}} +{{- $showFlexSearch := .Site.Params.options.flexSearch }} +{{- if $showFlexSearch }} + {{- if and (isset .Site.Params.options "searchsectionsshow") (not (eq .Site.Params.options.searchSectionsShow "ALL")) }} + {{- $showFlexSearch = or (eq (len .Site.Params.options.searchSectionsShow) 0) (in .Site.Params.options.searchSectionsShow .Section) (and .IsHome (in .Site.Params.options.searchSectionsShow "HomePage")) }} + {{- end }} +{{- end }} + +{{- if $showFlexSearch }} - {{ if .Site.Params.options.flexSearch -}} - {{ end -}} {{ if eq .Site.Params.options.docsVersioning true -}}