From 770a6a1258a6a139cc1333821125e69fdc937e56 Mon Sep 17 00:00:00 2001 From: Salt Date: Fri, 1 May 2020 14:59:10 -0500 Subject: [PATCH] Turn off password requirements --- roles/gitea/templates/app.ini | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/roles/gitea/templates/app.ini b/roles/gitea/templates/app.ini index cd3d0a5..f80436b 100644 --- a/roles/gitea/templates/app.ini +++ b/roles/gitea/templates/app.ini @@ -35,9 +35,10 @@ ENABLE_FEDERATED_AVATAR = false ROOT = {{ gitea_root_directory }} [security] -INTERNAL_TOKEN = {{ gitea_internal_token.stdout }} -INSTALL_LOCK = true -SECRET_KEY = {{ gitea_secret_key.stdout }} +INTERNAL_TOKEN = {{ gitea_internal_token.stdout }} +INSTALL_LOCK = true +PASSWORD_COMPLEXITY = off +SECRET_KEY = {{ gitea_secret_key.stdout }} [server] SSH_DOMAIN = {{ gitea_url }}