Files
michaelschiemer/ansible/netcup-simple-deploy/roles/webapp/defaults/main.yml

25 lines
564 B
YAML

---
# Default variables for webapp role (Port-Konflikt behoben)
# App directory on server
app_directory: "/opt/{{ app_name }}"
# PHP settings
php_version: "8.4"
# Health check
health_check_url: "/health"
health_check_timeout: 30
# Default app settings if not defined in inventory
app_name: "myapp"
app_port: 8000 # PHP läuft auf Port 8080, nginx auf Port 80
domain: "test.michaelschiemer.de"
ssl_email: "kontakt@michaelschiemer.de"
# Default environment variables
app_env:
APP_ENV: "production"
PHP_MEMORY_LIMIT: "256M"
PHP_UPLOAD_MAX_FILESIZE: "50M"