Update config.template.yml to include TOTP issuer name
* Update config.template.yml and hook.ts This fixes issue reported in #251.pull/255/head
parent
1617fab68e
commit
2b1807d32b
|
@ -22,6 +22,14 @@ logs_level: debug
|
|||
# be redirected upon successful authentication.
|
||||
default_redirection_url: https://home.example.com:8080/
|
||||
|
||||
# TOTP Issuer Name
|
||||
#
|
||||
# This will be the issuer name displayed in Google Authenticator
|
||||
# See: https://github.com/google/google-authenticator/wiki/Key-Uri-Format for more info on issuer names
|
||||
totp:
|
||||
issuer: authelia.com
|
||||
|
||||
|
||||
# LDAP configuration
|
||||
#
|
||||
# Example: for user john, the DN will be cn=john,ou=users,dc=example,dc=com
|
||||
|
|
|
@ -69,9 +69,8 @@ function createSingleFactorConfiguration(): BluebirdPromise<void> {
|
|||
|
||||
function createCustomTotpIssuerConfiguration(): BluebirdPromise<void> {
|
||||
return exec("\
|
||||
cat config.template.yml > config.test.yml && \
|
||||
echo 'totp:' >> config.test.yml && \
|
||||
echo ' issuer: custom.com' >> config.test.yml \
|
||||
cat config.template.yml | \
|
||||
sed 's/issuer: authelia.com/issuer: custom.com/' > config.test.yml \
|
||||
");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue