38 lines
849 B
YAML
38 lines
849 B
YAML
---
|
|
# Produktions-spezifische Variablen
|
|
environment: production
|
|
|
|
# Deployment-Pfade
|
|
deploy_root: /var/www/michaelschiemer
|
|
docker_compose_project_path: "{{ deploy_root }}"
|
|
env_file_path: "{{ deploy_root }}/.env"
|
|
deploy_public: "{{ deploy_root }}/public"
|
|
|
|
# Domainname für Produktion
|
|
app_domain: "michaelschiemer.de"
|
|
app_env: "production"
|
|
|
|
# Umgebungsvariablen
|
|
env_vars:
|
|
APP_ENV: production
|
|
APP_DEBUG: "false"
|
|
APP_PORT: 80
|
|
APP_SSL_PORT: 443
|
|
COMPOSER_INSTALL_FLAGS: --no-dev --optimize-autoloader
|
|
|
|
# Docker-Compose-Projekt
|
|
compose_project_name: "michaelschiemer_prod"
|
|
|
|
# SSL-Konfiguration
|
|
ssl_enabled: true
|
|
ssl_cert_path: "/etc/letsencrypt/live/{{ app_domain }}"
|
|
|
|
# Performance-Optimierung
|
|
redis_maxmemory: "512mb"
|
|
nginx_worker_processes: "auto"
|
|
nginx_worker_connections: 2048
|
|
|
|
# Cache-Einstellungen
|
|
cache_enabled: true
|
|
cache_lifetime: 3600
|