2023-12-22 15:49:55 +01:00
|
|
|
##
|
|
|
|
# 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=true
|
|
|
|
OPENPROJECT_HOST__NAME={{domain}}
|
|
|
|
PORT=127.0.0.1:{{http_port}}
|
|
|
|
OPENPROJECT_RAILS__RELATIVE__URL__ROOT=
|
|
|
|
IMAP_ENABLED=false
|
2023-12-26 03:13:16 +01:00
|
|
|
POSTGRES_PASSWORD="{{ database_password }}"
|
2024-01-06 14:32:49 +01:00
|
|
|
DATABASE_URL="postgres://{{ database_username }}:{{ database_password }}@{{database_host}}/{{database_name}}?pool=20&encoding=unicode&reconnect=true"
|
2023-12-22 15:49:55 +01:00
|
|
|
RAILS_MIN_THREADS=4
|
2023-12-31 11:14:18 +01:00
|
|
|
RAILS_MAX_THREADS=16
|