mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-11-26 06:43:10 +00:00
Includes: - Talk recording tmp volume wiring for Nextcloud - ONLYOFFICE external PostgreSQL/Redis env integration - Added explicit volumes for pgdata/redis/rabbitmq - Switched ONLYOFFICE role to sys-stk-full-stateful - Updated docker-compose mounts and vars - CSP and feature flag improvements Conversation reference: https://chatgpt.com/share/6922f50e-cc44-800f-89fc-e1251c5bbe45
17 lines
429 B
Django/Jinja
17 lines
429 B
Django/Jinja
# ONLYOFFICE external PostgreSQL settings
|
|
DB_TYPE={{ database_type }}
|
|
DB_HOST={{ database_host }}
|
|
DB_PORT={{ database_port }}
|
|
DB_NAME={{ database_name }}
|
|
DB_USER={{ database_username }}
|
|
DB_PWD={{ database_password }}
|
|
|
|
# Redis
|
|
REDIS_SERVER_HOST=redis
|
|
REDIS_SERVER_PORT=6379
|
|
# AMQP_URI=amqp://user:password@rabbitmq.example.internal:5672/onlyoffice
|
|
|
|
JWT_ENABLED=true
|
|
JWT_SECRET={{ ONLYOFFICE_JWT_SECRET }}
|
|
JWT_HEADER=Authorization
|