mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-10 11:26:24 +00:00
23 lines
1004 B
Django/Jinja
23 lines
1004 B
Django/Jinja
##
|
|
# All environment variables defined here will only apply if you pass them
|
|
# to the OpenProject container in docker-compose.yml under x-op-app -> environment.
|
|
# For the examples here this is already the case.
|
|
#
|
|
# Please refer to our documentation to see all possible variables:
|
|
# https://www.openproject.org/docs/installation-and-operations/configuration/environment/
|
|
#
|
|
OPENPROJECT_HTTPS={{ SSL_ENABLED | bool | string | lower }}
|
|
OPENPROJECT_HOST__NAME={{ domains | get_domain(application_id) }}
|
|
OPENPROJECT_RAILS__RELATIVE__URL__ROOT=
|
|
IMAP_ENABLED=false
|
|
OPENPROJECT_HSTS={{ SSL_ENABLED | bool | string | lower }}
|
|
RAILS_CACHE_STORE: "memcache"
|
|
OPENPROJECT_CACHE__MEMCACHE__SERVER: "cache:11211"
|
|
OPENPROJECT_RAILS__RELATIVE__URL__ROOT: ""
|
|
|
|
# Database
|
|
POSTGRES_PASSWORD="{{ database_password }}"
|
|
DATABASE_URL="{{ database_url_full }}?pool=20&encoding=unicode&reconnect=true"
|
|
DB_POOL="{{ POSTGRES_ALLOWED_AVG_CONNECTIONS }}"
|
|
RAILS_MAX_THREADS="{{ POSTGRES_ALLOWED_AVG_CONNECTIONS }}"
|
|
RAILS_MIN_THREADS=4 |