diff --git a/docs/.editorconfig b/docs/.editorconfig index dad6b5822..13c862956 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 672d6c7a6..b02ace14c 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 10cd7ed9c..87181c78f 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 19273aca8..91c27c949 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 0970d63d1..4580e456f 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 6c2bbcefd..a9c66d7bf 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 528a84bc4..17d4b8fff 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 e8e8032c2..ac057faec 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 72a5f8278..786db99a4 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 b77975628..4c620e9c7 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 3c06b5200..d7474d1a9 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 865b42b55..e6232cf14 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 95b8d6109..57a6ff327 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 aa4a99ae3..c4ba79fc1 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 fd1fd0d0b..60979f3d0 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 15bdc7314..e22f539bf 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 7e02b2bd5..a1b4db76b 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 dc21fdc44..d0a8bebe0 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 dffe23667..10c9096fe 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 9ff036894..5a589c8a9 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 34311d11e..20e04b6ed 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 7cf7f35c7..67b436b90 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 c46bec794..8c3728856 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 a8c50cbb0..e5d32a55d 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 c49bda594..b763e99af 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 a65ea9b99..305074b2c 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 2e720c0f2..e004fad9c 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 3eea1ce15..eb04def3d 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 8f4d6cdb2..8b35ef6f4 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 7ed72af88..97c1c955e 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 43d28a8bf..72ad7f422 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 7a19ef039..76763c33a 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 80b14cb97..e03460c95 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 ddf76c132..abc4a7934 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 5cea9839f..9eacab0e9 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 ebf14f803..8de9b0e67 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 e95507a14..a3767882a 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 c194a16b0..99c66851c 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 077d90171..a93555e3d 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 bc3225854..4db71039c 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 569f02ea2..1458c2c77 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 6722adce8..5a759f70e 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 b425c480f..93bcc3077 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 01866387d..c3b03ee4e 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 c3b3aeda0..494ab0832 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 4329139c7..dd9e2bbc5 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 60f7cca21..691c62a9e 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 fe829fc20..516e41ce9 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 b2a77512f..b3cc68287 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 8b3cdf6f2..a8ba2f64a 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 9066e13b7..3008c81fc 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 9e54ee04a..d0a27b758 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 41b578d6e..47312da90 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 acbcf9f0b..f073ae94b 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 73a399662..c417df28f 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 3e73d799e..cd8859c24 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 7dd3500ad..1ca7ef172 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 8c0d34735..2cc957803 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 87c94d342..864e5d479 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 0a8ff7dbc..45b3e6408 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 1a5f7d12f..cd0e67be6 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 19f4f8ac6..a990cddcb 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 bf1a0babf..dee8b36e8 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 cbdbe3488..0591223e7 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 ca3a065c1..e5d2973db 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 a7f8fbb8c..eb10b44c6 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 bfb6c457b..8053eef7d 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 0e3616230..757925d12 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 10aaa33ea..c0a33d439 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 48a2067af..f7290b9af 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 2ce6b1acd..b35df9799 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 415c2f463..70b9e7b48 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 0501a5a3e..c9b4732d5 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 42d441197..b6f595d3e 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 706f3bd3b..90860d027 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 4b8ff644b..e646d854b 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 4793e3f2d..abf789d97 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 62d2ef55f..b13d9323b 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 1e21a81ff..68c9c154c 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 5f91cee71..840638343 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 1dc63ac55..0e8126be3 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 3a9b48b40..d1fe04032 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 f463f5501..76d245bea 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 efe6f74ba..99edc587d 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 945e8c52e..4c36ba279 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 2b7f30aee..31221a1e1 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 6af7af970..675ecf770 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 edc64eb90..35f9bb2a7 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 e2fd07e71..59fcec0ef 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 2f450256b..654863629 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 bc5c95652..9299ce837 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 bba3c24b1..3d20552f3 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 517531b91..2a92610d8 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 3f10367fe..86106bd4a 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 135b6e025..db59ed945 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 26873bda6..a0c414cee 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 350738cae..3ee033568 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 331ddfca9..bd7bd1b41 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 4a0db13ca..04b50f3f2 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 72fa4917a..c452c470b 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 435f15c3d..ced7a3184 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 13fb579e3..fe6bf47ec 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 7e0918afc..3d6551d97 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 9b7520e28..e4d6aaca2 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 9f01295e3..485cab497 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 3d3912df0..47d11312e 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 7130db908..421689e75 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 6405b21d9..21aa55a83 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 045d22949..ee67ff449 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 9a6f151c3..220136c06 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 1563706e0..342ec0c14 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 8eb17fe8f..733f6bf92 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 49e320fed..f5a8dd178 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 2c76533fe..a747a1fa5 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 aff28fba9..07c33f6ca 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 9b87362f8..6508bca85 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 119cf4937..fa56e3c5a 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 f1e468ea5..17129034e 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 049cac2ba..f8097d9b4 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 5b09ab433..70f0b978a 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 65f2bf0e0..1867bf3b1 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 73fbc7f4b..9ab6f90a8 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 c843d5033..6e2e37183 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 4347ff845..1038c6287 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 37ddd1ea3..256887ee0 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 458611aa0..b6a8a5dad 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 dda7a5ce6..e26127873 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 431134e99..b9435b1f4 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 11183c284..9d3c0f632 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 b1f45c864..9bbb1942a 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 1d4d6d634..0fb4df200 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 87e0960dd..e509f22d1 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 c54b0eff2..110bdcb76 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 0ade02185..6503fd635 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 0f9138561..29356fafa 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 c29eef497..6bcc951d1 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 010873173..9f70546c8 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 2a713f8d0..9762605ba 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 dc90ad749..9b012bcde 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 5e130725e..df3b63921 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 041d1cb9d..3aa9de3e1 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 2f888d074..2473ccf18 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 ee143fa83..83d4ec41d 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 368bdfeb6..c758e9d9c 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 9e2bdcf1a..812ee3045 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 89df12c33..f86bfc0ff 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 cb61ce8ae..9f95f2c9a 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 66fbf3fb9..2d82e9a16 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 6e0d92080..8c2b72f91 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 dcbe98723..4752213d9 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 81889a921..f476c72fb 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 8dced8f32..bf16b2860 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 56dc593fd..73c597b0b 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 5dea9ada3..d46eae4f8 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 14e28a1e4..681d197b1 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 3dfc1aa3b..0f2e1ee85 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 fa2f5eec3..d1a736437 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 cda36b0d1..1f5f23394 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 51fd7eea6..cac628798 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 84b9c4ab5..64a5d2703 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 e7ca06d4a..244397f54 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 6ee450a53..3438e3cfe 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 c47386dd2..0397e8fea 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 b806a62a7..627b8437d 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 a3fa35d3a..078780921 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 3583fbea8..e24ab1e95 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 65784543a..1d04e40b2 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 48dbdb8d7..0867471b8 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 88acca5d9..6d5d2c116 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 933702d4b..a6020a4dd 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 f56cbb293..80855c607 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 e7cc7b3c5..87a56bd85 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 bf8d277dd..d24790fa1 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 5f9246cf9..d46f1041e 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 40e72f391..bb580e08d 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 ae274b082..07a4117a4 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 979d2cd7f..6e228bcfe 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 a7f9bd37a..ff6ae1b8d 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 fa6bbf9ed..371fbc4d0 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 b2a4898c1..55eb9946d 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 4547e2a22..774272aa2 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 d37ffc6c6..54b464e90 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 b277ab023..d195c5ee7 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 94e51a167..af237afab 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 add3f6b1c..10c2dbe7c 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 000000000..c6d51ee91 --- /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 a68339d45..7240b0094 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 0c4d30aec..93debd522 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 }}