20 lines
369 B
YAML
20 lines
369 B
YAML
---
|
|
# Globale Einstellungen
|
|
|
|
# Docker-Einstellungen
|
|
docker_compose_version: "2.24.0"
|
|
|
|
# Nginx-Einstellungen
|
|
nginx_client_max_body_size: "50M"
|
|
nginx_worker_connections: 1024
|
|
|
|
# SSL-Einstellungen
|
|
ssl_protocols: "TLSv1.2 TLSv1.3"
|
|
|
|
# App-Verzeichnis auf dem Server
|
|
app_directory: "/opt/{{ app_name }}"
|
|
|
|
# Health Check
|
|
health_check_url: "/health"
|
|
health_check_timeout: 30
|