docs: update dates (#3615)
parent
67cdb60d86
commit
352b360a50
|
@ -1,11 +1,6 @@
|
||||||
# editorconfig.org
|
# editorconfig.org
|
||||||
|
|
||||||
root = true
|
|
||||||
|
|
||||||
[*]
|
[*]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
end_of_line = lf
|
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
trim_trailing_whitespace = true
|
|
||||||
insert_final_newline = true
|
|
|
@ -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) -}}
|
{{ $len := (len $list) -}}
|
||||||
|
|
||||||
index.add(
|
index.add(
|
||||||
|
@ -120,8 +114,8 @@ Source:
|
||||||
|
|
||||||
function show_results(){
|
function show_results(){
|
||||||
const maxResult = 5;
|
const maxResult = 5;
|
||||||
var searchQuery = this.value;
|
const searchQuery = this.value;
|
||||||
var results = index.search(searchQuery, {limit: maxResult, enrich: true});
|
const results = index.search(searchQuery, {limit: maxResult, enrich: true});
|
||||||
|
|
||||||
// flatten results since index.search() returns results for each indexed field
|
// flatten results since index.search() returns results for each indexed field
|
||||||
const flatResults = new Map(); // keyed by href to dedupe results
|
const flatResults = new Map(); // keyed by href to dedupe results
|
||||||
|
@ -163,7 +157,7 @@ Source:
|
||||||
|
|
||||||
suggestions.appendChild(entry);
|
suggestions.appendChild(entry);
|
||||||
|
|
||||||
if(suggestions.childElementCount == maxResult) break;
|
if(suggestions.childElementCount === maxResult) break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}());
|
}());
|
||||||
|
|
|
@ -76,6 +76,8 @@ lastMod = true
|
||||||
clipBoard = true
|
clipBoard = true
|
||||||
instantPage = true
|
instantPage = true
|
||||||
flexSearch = true
|
flexSearch = true
|
||||||
|
searchSectionsShow = ["overview", "configuration", "integration", "contributing", "reference"]
|
||||||
|
searchSectionsIndex = ["overview", "configuration", "integration", "contributing", "reference", "blog"]
|
||||||
darkMode = true
|
darkMode = true
|
||||||
bootStrapJs = true
|
bootStrapJs = true
|
||||||
breadCrumb = true
|
breadCrumb = true
|
||||||
|
@ -89,7 +91,3 @@ lastMod = true
|
||||||
[menu.section]
|
[menu.section]
|
||||||
auto = true
|
auto = true
|
||||||
collapsibleSidebar = true
|
collapsibleSidebar = true
|
||||||
|
|
||||||
[Sections]
|
|
||||||
Search = ["overview", "configuration", "integration", "contributing", "reference"]
|
|
||||||
Searchable = ["blog"]
|
|
||||||
|
|
|
@ -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."
|
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 <a href=\"./overview/authentication/introduction/\">authentication</a> and <a href=\"./overview/authorization/access-control/\">authorization</a> server and portal fulfilling the identity and access management (IAM) role of information security in providing <a href=\"./overview/authentication/introduction/\">multi-factor authentication</a> and single sign-on (SSO) for your applications via a web portal. It acts as a companion for <a href=\"./overview/prologue/supported-proxies/\">common reverse proxies</a>."
|
lead: "Authelia is an open-source <a href=\"./overview/authentication/introduction/\">authentication</a> and <a href=\"./overview/authorization/access-control/\">authorization</a> server and portal fulfilling the identity and access management (IAM) role of information security in providing <a href=\"./overview/authentication/introduction/\">multi-factor authentication</a> and single sign-on (SSO) for your applications via a web portal. It acts as a companion for <a href=\"./overview/prologue/supported-proxies/\">common reverse proxies</a>."
|
||||||
date: 2020-04-15T15:48:16+02:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: "Blog"
|
title: "Blog"
|
||||||
description: "The Authelia Blog."
|
description: "The Authelia Blog."
|
||||||
date: 2020-04-15T15:48:16+02:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
---
|
---
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Say hello to the new website 👋"
|
title: "Say hello to the new website 👋"
|
||||||
description: "Introducing the new website"
|
description: "Introducing the new website"
|
||||||
lead: "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
|
draft: false
|
||||||
contributors: ["James Elliott"]
|
contributors: ["James Elliott"]
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title : "Configuration"
|
title: "Configuration"
|
||||||
description: "Configuration Docs"
|
description: "Configuration Docs"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title : "First Factor"
|
title: "First Factor"
|
||||||
description: "First Factor methods configuration"
|
description: "First Factor methods configuration"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 102000
|
weight: 102000
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "File"
|
title: "File"
|
||||||
description: "File"
|
description: "File"
|
||||||
lead: "Authelia supports a file based first factor user provider. This section describes configuring this."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "First Factor"
|
title: "First Factor"
|
||||||
description: "Configuring Authelia First Factor Authentication."
|
description: "Configuring Authelia First Factor Authentication."
|
||||||
lead: "Authelia uses a username and password for a first factor method. This section describes configuring this."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "LDAP"
|
title: "LDAP"
|
||||||
description: "Configuring LDAP"
|
description: "Configuring LDAP"
|
||||||
lead: "Authelia supports an LDAP server based first factor user provider. This section describes configuring this."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title : "Identity Providers"
|
title: "Identity Providers"
|
||||||
description: "Identity Providers Configuration"
|
description: "Identity Providers Configuration"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 190000
|
weight: 190000
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Identity Providers"
|
title: "Identity Providers"
|
||||||
description: "Identity Providers Configuration"
|
description: "Identity Providers Configuration"
|
||||||
lead: "Authelia is evolving to become an identity provider. This section describes how to configure this."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "OpenID Connect"
|
title: "OpenID Connect"
|
||||||
description: "OpenID Connect Configuration"
|
description: "OpenID Connect Configuration"
|
||||||
lead: "Authelia can operate as an OpenID Connect provider. This section describes how to configure this."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title : "Methods"
|
title: "Methods"
|
||||||
description: "Methods of Configuration"
|
description: "Methods of Configuration"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 101000
|
weight: 101000
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Environment"
|
title: "Environment"
|
||||||
description: "Using the Environment Variable Configuration Method."
|
description: "Using the Environment Variable Configuration Method."
|
||||||
lead: "Authelia has a layered configuration model. This section describes how to implement the environment configuration."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Files"
|
title: "Files"
|
||||||
description: "Using the YAML File Configuration Method."
|
description: "Using the YAML File Configuration Method."
|
||||||
lead: "Authelia can be configured via files. This section describes utilizing this 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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Methods"
|
title: "Methods"
|
||||||
description: "Methods of Configuration."
|
description: "Methods of Configuration."
|
||||||
lead: "Authelia has a layered configuration model. This section describes how to implement 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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Secrets"
|
title: "Secrets"
|
||||||
description: "Using the Secrets Configuration Method."
|
description: "Using the Secrets Configuration Method."
|
||||||
lead: "Authelia allows providing configuration via secrets method. This section describes how to implement this."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title : "Miscellaneous"
|
title: "Miscellaneous"
|
||||||
description: "Miscellaneous Configuration"
|
description: "Miscellaneous Configuration"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 199000
|
weight: 199000
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Guides"
|
title: "Guides"
|
||||||
description: "Miscellaneous Guides for Configuration."
|
description: "Miscellaneous Guides for Configuration."
|
||||||
lead: "This section contains miscellaneous guides used in the 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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Miscellaneous"
|
title: "Miscellaneous"
|
||||||
description: "Miscellaneous Configuration."
|
description: "Miscellaneous Configuration."
|
||||||
lead: "Authelia has a few config items that don't fit into their own area. This describes these options."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Log"
|
title: "Log"
|
||||||
description: "Configuring the Log Settings."
|
description: "Configuring the Log Settings."
|
||||||
lead: "Authelia performs logging to various locations. This section describes how to configure and tune this."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "NTP"
|
title: "NTP"
|
||||||
description: "Configuring the NTP Settings."
|
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."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Server"
|
title: "Server"
|
||||||
description: "Configuring the Server Settings."
|
description: "Configuring the Server Settings."
|
||||||
lead: "Authelia runs an internal webserver. This section describes how to configure and tune this."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title : "Notifications"
|
title: "Notifications"
|
||||||
description: "Notifiations Configuration"
|
description: "Notifications Configuration"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 107000
|
weight: 107000
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "File System"
|
title: "File System"
|
||||||
description: "Configuring the File Notifications Settings."
|
description: "Configuring the File Notifications Settings."
|
||||||
lead: "Authelia can save notifications to a file. This section describes how to configure this."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Notifications"
|
title: "Notifications"
|
||||||
description: "Configuring the Notifications Settings."
|
description: "Configuring the Notifications Settings."
|
||||||
lead: "Authelia sends messages to users in order to verify their identity. This section describes how to configure this."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "SMTP"
|
title: "SMTP"
|
||||||
description: "Configuring the SMTP Notifications Settings."
|
description: "Configuring the SMTP Notifications Settings."
|
||||||
lead: "Authelia can send emails to users through an SMTP server. This section describes how to configure this."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title : "Prologue"
|
title: "Prologue"
|
||||||
description: "Configuration Prologue"
|
description: "Configuration Prologue"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 100000
|
weight: 100000
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Common"
|
title: "Common"
|
||||||
description: "Common configuration options and notations."
|
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."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Prologue"
|
title: "Prologue"
|
||||||
description: "An introduction into configuring Authelia."
|
description: "An introduction into configuring Authelia."
|
||||||
lead: "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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Migration"
|
title: "Migration"
|
||||||
description: "Information regarding configuration migration."
|
description: "Information regarding configuration migration."
|
||||||
lead: "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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title : "Second Factor"
|
title: "Second Factor"
|
||||||
description: "Second Factor methods configuration"
|
description: "Second Factor methods configuration"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 103000
|
weight: 103000
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Duo / Mobile Push"
|
title: "Duo / Mobile Push"
|
||||||
description: "Configuring the Duo Mobile Push Notification Second Factor Method."
|
description: "Configuring the Duo Mobile Push Notification Second Factor Method."
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Second Factor"
|
title: "Second Factor"
|
||||||
description: "Configuring Authelia Second Factor Authentication."
|
description: "Configuring Authelia Second Factor Authentication."
|
||||||
lead: "Authelia provides a number of 2FA methods. This section describes these methods."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Time-based One Time Password"
|
title: "Time-based One Time Password"
|
||||||
description: "Configuring the Time-based One Time Password Second Factor Method."
|
description: "Configuring the Time-based One Time Password Second Factor Method."
|
||||||
lead: "Authelia supports utilizing time-based one-time passwords as a 2FA 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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "WebAuthn"
|
title: "WebAuthn"
|
||||||
description: "Configuring the WebAuthn Second Factor Method."
|
description: "Configuring the WebAuthn Second Factor Method."
|
||||||
lead: "WebAuthn is the modern browser security key specification that Authelia supports. This section describes configuring it."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Security"
|
title: "Security"
|
||||||
description: "Security Related Configuration"
|
description: "Security Related Configuration"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 104000
|
weight: 104000
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Access Control"
|
title: "Access Control"
|
||||||
description: "Configuring the Access Control or RBAC settings."
|
description: "Configuring the Access Control or RBAC settings."
|
||||||
lead: "Authelia supports a comprehensive access control system. This section describes configuring this."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Security"
|
title: "Security"
|
||||||
description: "Security Related Configuration"
|
description: "Security Related Configuration"
|
||||||
lead: "An introduction into configuring the security settings."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Password Policy"
|
title: "Password Policy"
|
||||||
description: "Password Policy Configuration"
|
description: "Password Policy Configuration"
|
||||||
lead: "Configuring the Password Policy."
|
lead: "Configuring the Password Policy."
|
||||||
date: 2022-04-12T14:40:22+10:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Regulation"
|
title: "Regulation"
|
||||||
description: "Regulation Configuration"
|
description: "Regulation Configuration"
|
||||||
lead: "Configuring the Regulation system."
|
lead: "Configuring the Regulation system."
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Session"
|
title: "Session"
|
||||||
description: "Session Configuration"
|
description: "Session Configuration"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 105000
|
weight: 105000
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Session"
|
title: "Session"
|
||||||
description: "Session Configuration"
|
description: "Session Configuration"
|
||||||
lead: "Configuring the Session / Cookie settings."
|
lead: "Configuring the Session / Cookie settings."
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Redis"
|
title: "Redis"
|
||||||
description: "Redis Session Configuration"
|
description: "Redis Session Configuration"
|
||||||
lead: "Configuring the Redis Session Storage."
|
lead: "Configuring the Redis Session Storage."
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2021-04-11T21:25:03+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Storage"
|
title: "Storage"
|
||||||
description: "Storage Configuration"
|
description: "Storage Configuration"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 106000
|
weight: 106000
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Storage"
|
title: "Storage"
|
||||||
description: "Storage Configuration"
|
description: "Storage Configuration"
|
||||||
lead: "Configuring the SQL Storage."
|
lead: "Configuring the SQL Storage."
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Migrations"
|
title: "Migrations"
|
||||||
description: "Storage Migrations"
|
description: "Storage Migrations"
|
||||||
lead: "A migration ."
|
lead: "A migration ."
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2021-11-23T20:45:38+11:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "MySQL"
|
title: "MySQL"
|
||||||
description: "MySQL Configuration"
|
description: "MySQL Configuration"
|
||||||
lead: "The MySQL storage provider which supports both MySQL and MariaDB."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "PostgreSQL"
|
title: "PostgreSQL"
|
||||||
description: "PostgreSQL Configuration"
|
description: "PostgreSQL Configuration"
|
||||||
lead: "The PostgreSQL storage provider."
|
lead: "The PostgreSQL storage provider."
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "SQLite3"
|
title: "SQLite3"
|
||||||
description: "SQLite3 Configuration"
|
description: "SQLite3 Configuration"
|
||||||
lead: "The SQLite3 storage provider."
|
lead: "The SQLite3 storage provider."
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Telemetry"
|
title: "Telemetry"
|
||||||
description: "Telemetry Configuration"
|
description: "Telemetry Configuration"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 108000
|
weight: 108000
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Telemetry"
|
title: "Telemetry"
|
||||||
description: "Configuring the Telemetry settings"
|
description: "Configuring the Telemetry settings"
|
||||||
lead: "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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Metrics"
|
title: "Metrics"
|
||||||
description: "Configuring the Metrics Telemetry settings"
|
description: "Configuring the Metrics Telemetry settings"
|
||||||
lead: "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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title : "Contributing"
|
title: "Contributing"
|
||||||
description: "Contributing Docs"
|
description: "Contributing Docs"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title : "Development"
|
title: "Development"
|
||||||
description: "Contributing via Development"
|
description: "Contributing via Development"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 200
|
weight: 200
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Building and Testing"
|
title: "Building and Testing"
|
||||||
description: "Building and Testing Authelia."
|
description: "Building and Testing Authelia."
|
||||||
lead: "This section covers the build process and how to perform tests in development."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Environment"
|
title: "Environment"
|
||||||
description: "How to configure your development environment."
|
description: "How to configure your development environment."
|
||||||
lead: "This section covers the environment we recommend for development."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Commit Message Guidelines"
|
title: "Commit Message Guidelines"
|
||||||
description: "Authelia Development Commit Message Guidelines"
|
description: "Authelia Development Commit Message Guidelines"
|
||||||
lead: "This section covers the git commit message guidelines we use for development."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Pull Request Guidelines"
|
title: "Pull Request Guidelines"
|
||||||
description: "Authelia Development Pull Request Guidelines"
|
description: "Authelia Development Pull Request Guidelines"
|
||||||
lead: "This section covers the 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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Style Guidelines"
|
title: "Style Guidelines"
|
||||||
description: "Authelia Development Style Guidelines"
|
description: "Authelia Development Style Guidelines"
|
||||||
lead: "This section covers the style guidelines we use for development."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Integration Suites"
|
title: "Integration Suites"
|
||||||
description: "Integration Suites."
|
description: "Integration Suites."
|
||||||
lead: "This section covers the build process and how to perform tests in development."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Development"
|
title: "Development"
|
||||||
description: "An introduction into contributing to the Authelia project via development."
|
description: "An introduction into contributing to the Authelia project via development."
|
||||||
lead: "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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Reference: authelia-scripts"
|
title: "Reference: authelia-scripts"
|
||||||
description: "This section covers the authelia-scripts tool."
|
description: "This section covers the authelia-scripts tool."
|
||||||
lead: "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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title : "Prologue"
|
title: "Prologue"
|
||||||
description: "Contributing Prologue"
|
description: "Contributing Prologue"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 100
|
weight: 100
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Documentation"
|
title: "Documentation"
|
||||||
description: "Information on contributing documentation to the Authelia project."
|
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."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Financial"
|
title: "Financial"
|
||||||
description: "Information on contributing financially to the Authelia project."
|
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."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Prologue"
|
title: "Prologue"
|
||||||
description: "An introduction into contributing to the Authelia project."
|
description: "An introduction into contributing to the Authelia project."
|
||||||
lead: "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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Translations"
|
title: "Translations"
|
||||||
description: "Information on contributing translations to the Authelia project."
|
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."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: "Contributors"
|
title: "Contributors"
|
||||||
description: "The Doks contributors."
|
description: "The Doks contributors."
|
||||||
date: 2020-11-04T08:26:58+01:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: "James Elliott"
|
title: "James Elliott"
|
||||||
description: "Authelia Core Team"
|
description: "Authelia Core Team"
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: "Information"
|
title: "Information"
|
||||||
description: "Information about the project."
|
description: "Information about the project."
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
---
|
---
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Code of Conduct"
|
title: "Code of Conduct"
|
||||||
description: "An introduction into contributing to the Authelia project."
|
description: "An introduction into contributing to the Authelia project."
|
||||||
lead: "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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: "Contact"
|
title: "Contact"
|
||||||
description: "Drop us an email."
|
description: "Drop us an email."
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
aliases:
|
aliases:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: "Privacy Policy"
|
title: "Privacy Policy"
|
||||||
description: "We do not use cookies and we do not collect any personal data."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: "Security"
|
title: "Security"
|
||||||
description: "Report security issues."
|
description: "Report security issues."
|
||||||
date: 2022-05-15T13:52:27+10:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
aliases:
|
aliases:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title : "Integration"
|
title: "Integration"
|
||||||
description: "Integration Docs"
|
description: "Integration Docs"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
---
|
---
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Deployment"
|
title: "Deployment"
|
||||||
description: "Deployment"
|
description: "Deployment"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 200
|
weight: 200
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Automation"
|
title: "Automation"
|
||||||
description: "Automated Deployment of Authelia."
|
description: "Automated Deployment of Authelia."
|
||||||
lead: "Authelia has several features which make automation easy."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Bare-Metal"
|
title: "Bare-Metal"
|
||||||
description: "Deploying Authelia on Bare-Metal."
|
description: "Deploying Authelia on Bare-Metal."
|
||||||
lead: "Authelia can be deployed on Bare-Metal as long as it sits behind a proxy."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Docker"
|
title: "Docker"
|
||||||
description: "A guide on installing Authelia in 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."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Deployment"
|
title: "Deployment"
|
||||||
description: "An introduction into integrating Authelia with a product."
|
description: "An introduction into integrating Authelia with a product."
|
||||||
lead: "An introduction into integrating Authelia within your architecture."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Kubernetes"
|
title: "Kubernetes"
|
||||||
description: "Test Description"
|
description: "Test Description"
|
||||||
lead: "An introduction into integrating Authelia with Kubernetes."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
@ -11,7 +11,8 @@ menu:
|
||||||
identifier: "kubernetes-deployment"
|
identifier: "kubernetes-deployment"
|
||||||
weight: 240
|
weight: 240
|
||||||
toc: true
|
toc: true
|
||||||
search: false
|
search:
|
||||||
|
index: false
|
||||||
---
|
---
|
||||||
|
|
||||||
Please see the dedicated [Kubernetes Documentation](../kubernetes/introduction/index.md).
|
Please see the dedicated [Kubernetes Documentation](../kubernetes/introduction/index.md).
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Kubernetes"
|
title: "Kubernetes"
|
||||||
description: "Kubernetes Integration"
|
description: "Kubernetes Integration"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 500
|
weight: 500
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Chart"
|
title: "Chart"
|
||||||
description: "A guide to using the Authelia helm chart to integrate Authelia with Kubernetes"
|
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."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Kubernetes"
|
title: "Kubernetes"
|
||||||
description: "An introduction into integrating Authelia with Kubernetes."
|
description: "An introduction into integrating Authelia with Kubernetes."
|
||||||
lead: "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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "NGINX Ingress"
|
title: "NGINX Ingress"
|
||||||
description: "A guide to integrating Authelia with the NGINX Kubernetes Ingress."
|
description: "A guide to integrating Authelia with the NGINX Kubernetes Ingress."
|
||||||
lead: "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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Secrets"
|
title: "Secrets"
|
||||||
description: "A guide to using secrets when integrating Authelia with Kubernetes."
|
description: "A guide to using secrets when integrating Authelia with Kubernetes."
|
||||||
lead: "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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Traefik Ingress"
|
title: "Traefik Ingress"
|
||||||
description: "A guide to integrating Authelia with the Traefik Kubernetes Ingress."
|
description: "A guide to integrating Authelia with the Traefik Kubernetes Ingress."
|
||||||
lead: "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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
---
|
---
|
||||||
title : "LDAP"
|
title: "LDAP"
|
||||||
description: "LDAP Integration"
|
description: "LDAP Integration"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 700
|
weight: 700
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "LDAP"
|
title: "LDAP"
|
||||||
description: "An introduction into integrating Authelia with LDAP."
|
description: "An introduction into integrating Authelia with LDAP."
|
||||||
lead: "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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,8 +2,10 @@
|
||||||
title: "OpenID Connect"
|
title: "OpenID Connect"
|
||||||
description: "OpenID Connect Integration"
|
description: "OpenID Connect Integration"
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-03-20T12:52:27+11:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
weight: 600
|
weight: 600
|
||||||
|
search:
|
||||||
|
index: false
|
||||||
---
|
---
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "BookStack"
|
title: "BookStack"
|
||||||
description: "Integrating BookStack with Authelia via OpenID Connect."
|
description: "Integrating BookStack with Authelia via OpenID Connect."
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-05-16T21:15:52+10:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Cloudflare Zero Trust"
|
title: "Cloudflare Zero Trust"
|
||||||
description: "Integrating Cloudflare Zero Trust with Authelia via OpenID Connect."
|
description: "Integrating Cloudflare Zero Trust with Authelia via OpenID Connect."
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-05-17T07:45:58+10:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "GitLab"
|
title: "GitLab"
|
||||||
description: "Integrating GitLab with Authelia via OpenID Connect."
|
description: "Integrating GitLab with Authelia via OpenID Connect."
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-05-16T21:15:52+10:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Grafana"
|
title: "Grafana"
|
||||||
description: "Integrating Grafana with Authelia via OpenID Connect."
|
description: "Integrating Grafana with Authelia via OpenID Connect."
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-05-16T21:15:52+10:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "Harbor"
|
title: "Harbor"
|
||||||
description: "Integrating Harbor with Authelia via OpenID Connect."
|
description: "Integrating Harbor with Authelia via OpenID Connect."
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-05-16T21:44:13+10:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "HashiCorp Vault"
|
title: "HashiCorp Vault"
|
||||||
description: "Integrating HashiCorp Vault with Authelia via OpenID Connect."
|
description: "Integrating HashiCorp Vault with Authelia via OpenID Connect."
|
||||||
lead: ""
|
lead: ""
|
||||||
date: 2022-05-16T21:15:52+10:00
|
date: 2022-06-15T17:51:47+10:00
|
||||||
draft: false
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
title: "OpenID Connect"
|
title: "OpenID Connect"
|
||||||
description: "An introduction into integrating the Authelia OpenID Connect Provider with an OpenID Connect relying party"
|
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."
|
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
|
draft: false
|
||||||
images: []
|
images: []
|
||||||
menu:
|
menu:
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue