mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-08 11:17:17 +02:00
Compute POSTGRES_ALLOWED_AVG_CONNECTIONS once and propagate to app roles (gitlab, mastodon, listmonk, matrix, pretix, mobilizon, openproject, discourse). Fix docker-compose postgres command (-c flags split). Add unit tests. Minor env/locale tweaks and includes. Conversation: https://chatgpt.com/share/68b48e72-cc28-800f-9c21-270cbc17d82a
23 lines
998 B
Django/Jinja
23 lines
998 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={{ WEB_PORT == 433 | string | lower }}
|
|
OPENPROJECT_HOST__NAME={{ domains | get_domain(application_id) }}
|
|
OPENPROJECT_RAILS__RELATIVE__URL__ROOT=
|
|
IMAP_ENABLED=false
|
|
OPENPROJECT_HSTS={{ WEB_PORT == 433 | 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 |