forked from data.coop/ansible
Add security and password policy customization
I need someone with a functional Docker setup to help test this :) Tip from a new user that we are requiring stupid password stuff https://www.bbc.com/news/technology-40875534
This commit is contained in:
parent
36534604c1
commit
17d4513b97
|
@ -22,6 +22,8 @@
|
||||||
VIRTUAL_PORT: "3000"
|
VIRTUAL_PORT: "3000"
|
||||||
LETSENCRYPT_HOST: "{{ gitea.domain }}"
|
LETSENCRYPT_HOST: "{{ gitea.domain }}"
|
||||||
LETSENCRYPT_EMAIL: "{{ letsencrypt_email }}"
|
LETSENCRYPT_EMAIL: "{{ letsencrypt_email }}"
|
||||||
|
# Gitea customization, see: https://docs.gitea.io/en-us/install-with-docker/#customization
|
||||||
|
# https://docs.gitea.io/en-us/config-cheat-sheet/#security-security
|
||||||
GITEA__mailer__ENABLED: "true"
|
GITEA__mailer__ENABLED: "true"
|
||||||
GITEA__mailer__FROM: "noreply@{{ gitea.domain }}"
|
GITEA__mailer__FROM: "noreply@{{ gitea.domain }}"
|
||||||
GITEA__mailer__MAILER_TYPE: "smtp"
|
GITEA__mailer__MAILER_TYPE: "smtp"
|
||||||
|
@ -29,3 +31,6 @@
|
||||||
GITEA__mailer__USER: "noop"
|
GITEA__mailer__USER: "noop"
|
||||||
GITEA__mailer__PASSWD: "noop"
|
GITEA__mailer__PASSWD: "noop"
|
||||||
GITEA__security__LOGIN_REMEMBER_DAYS: "60"
|
GITEA__security__LOGIN_REMEMBER_DAYS: "60"
|
||||||
|
GITEA__security__PASSWORD_COMPLEXITY: "off"
|
||||||
|
GITEA__security__MIN_PASSWORD_LENGTH: "8"
|
||||||
|
GITEA__security__PASSWORD_CHECK_PWN: "true"
|
||||||
|
|
Loading…
Reference in a new issue