mirror of
https://github.com/wallabag/docker
synced 2025-12-13 09:46:27 +00:00
61 lines
1.8 KiB
Django/Jinja
61 lines
1.8 KiB
Django/Jinja
parameters:
|
|
database_driver: {{ database_driver }}
|
|
database_host: {{ database_host }}
|
|
database_port: {{ database_port }}
|
|
database_name: {{ database_name }}
|
|
database_user: {{ database_user }}
|
|
database_password: {{ database_password }}
|
|
database_path: "%kernel.root_dir%/../data/db/wallabag.sqlite"
|
|
database_table_prefix: wallabag_
|
|
database_socket: null
|
|
database_charset: {{ database_charset }}
|
|
|
|
domain_name: {{ domain_name }}
|
|
|
|
mailer_transport: {{ mailer_transport }}
|
|
mailer_user: {{ mailer_user }}
|
|
mailer_password: {{ mailer_password }}
|
|
mailer_host: {{ mailer_host }}
|
|
mailer_port: {{ mailer_port }}
|
|
mailer_encryption: {{ mailer_encryption }}
|
|
mailer_auth_mode: {{ mailer_auth_mode }}
|
|
|
|
locale: {{ locale }}
|
|
|
|
# A secret key that's used to generate certain security-related tokens
|
|
secret: {{ secret }}
|
|
|
|
# two factor stuff
|
|
twofactor_auth: {{ twofactor_auth }}
|
|
twofactor_sender: {{ twofactor_sender }}
|
|
|
|
# fosuser stuff
|
|
fosuser_registration: {{ registration }}
|
|
fosuser_confirmation: {{ registration_mail_confirmation }}
|
|
|
|
# how long the access token should live in seconds for the API
|
|
fos_oauth_server_access_token_lifetime: 3600
|
|
# how long the refresh token should life in seconds for the API
|
|
fos_oauth_server_refresh_token_lifetime: 1209600
|
|
|
|
from_email: {{ from_email }}
|
|
|
|
rss_limit: 50
|
|
|
|
# RabbitMQ processing
|
|
rabbitmq_host: localhost
|
|
rabbitmq_port: 5672
|
|
rabbitmq_user: guest
|
|
rabbitmq_password: guest
|
|
rabbitmq_prefetch_count: 10
|
|
|
|
# Redis processing
|
|
redis_scheme: {{ redis_scheme }}
|
|
redis_host: {{ redis_host }}
|
|
redis_port: {{ redis_port }}
|
|
redis_path: {{ redis_path }}
|
|
redis_password: {{ redis_password }}
|
|
|
|
# sentry logging
|
|
sentry_dsn: {{ sentry_dsn }}
|