mirror of
https://github.com/simple-login/app.git
synced 2025-02-23 15:23:27 +08:00
Add HCAPTCHA_SECRET, HCAPTCHA_SITEKEY param
This commit is contained in:
parent
38a6bcc461
commit
307e3c93c6
2 changed files with 8 additions and 1 deletions
|
@ -292,3 +292,6 @@ ALERT_SPF = "spf"
|
|||
|
||||
# Disable onboarding emails
|
||||
DISABLE_ONBOARDING = "DISABLE_ONBOARDING" in os.environ
|
||||
|
||||
HCAPTCHA_SECRET = os.environ.get("HCAPTCHA_SECRET")
|
||||
HCAPTCHA_SITEKEY = os.environ.get("HCAPTCHA_SITEKEY")
|
||||
|
|
|
@ -145,4 +145,8 @@ DISABLE_ONBOARDING=true
|
|||
|
||||
# By default use postfix port 25. This param is used to override the Postfix port,
|
||||
# useful when using another SMTP server when developing locally
|
||||
# POSTFIX_PORT=1025
|
||||
# POSTFIX_PORT=1025
|
||||
|
||||
# set the 2 below variables to enable hCaptcha
|
||||
# HCAPTCHA_SECRET=very_long_string
|
||||
# HCAPTCHA_SITEKEY=00000000-0000-0000-0000-000000000000
|
Loading…
Reference in a new issue