bounca/example/images/bounca/root/opt/bounca/etc/bounca/services.yaml.template

42 lines
1.0 KiB
Plaintext

psql:
dbname: ${BOUNCA_DB_NAME}
username: ${BOUNCA_DB_USER}
password: ${BOUNCA_DB_PASSWORD}
host: ${BOUNCA_DB_HOST}
port: ${BOUNCA_DB_PORT}
admin:
enabled: True
superuser_signup: False
django:
debug: False
secret_key: '${BOUNCA_DJANGO_SECRET}'
hosts:
# add your hosts here
- localhost
- 127.0.0.1
- bounca
- ${BOUNCA_HOST}
mail:
host: ${BOUNCA_SMTP_SERVER}
port: ${BOUNCA_SMTP_PORT}
# port: 587 optionally, only for tls and ssl
# username: <user>
# password: <password>
# connection: none # allowed values: none, tls, ssl
admin: ${BOUNCA_ADMIN_EMAIL}
from: ${BOUNCA_FROM_EMAIL}
certificate-engine:
# allowed values: ed25519, rsa
# Ed25519 is a a modern, fast and safe key algorithm, however not supported by all operating systems, like MacOS.
# Keep the 'rsa' option if unsure. Root and intermediate keys are 4096 bits, client and server certificates
# use 2048 bits keys.
key_algorithm: rsa
registration:
# allowed values: mandatory, optional, off
email_verification: off