Add hash support in basic auth (#943)

This commit is contained in:
Ahsan Virani
2020-09-10 17:49:44 +02:00
committed by GitHub
parent fccbd48937
commit 2a6f4ebf86
3 changed files with 14 additions and 3 deletions

View File

@@ -319,6 +319,12 @@ const config = convict({
env: 'N8N_BASIC_AUTH_PASSWORD',
doc: 'The password of the basic auth user'
},
hash: {
format: 'Boolean',
default: false,
env: 'N8N_BASIC_AUTH_HASH',
doc: 'If password for basic auth is hashed'
}
},
jwtAuth: {
active: {