Files

39 lines
1.3 KiB
Bash

# Managed by Ansible — manual changes will be overwritten on next deployment
APP_ID={{ coolify_app_id }}
APP_NAME={{ coolify_app_name }}
APP_KEY={{ coolify_app_key }}
APP_ENV={{ coolify_app_env }}
APP_PORT={{ coolify_app_port }}
REGISTRY_URL={{ coolify_registry_url }}
LATEST_IMAGE={{ coolify_image_tag }}
PHP_MEMORY_LIMIT={{ coolify_php_memory_limit }}
PHP_FPM_PM_CONTROL={{ coolify_php_fpm_pm_control }}
PHP_FPM_PM_START_SERVERS={{ coolify_php_fpm_pm_start_servers }}
PHP_FPM_PM_MIN_SPARE_SERVERS={{ coolify_php_fpm_pm_min_spare_servers }}
PHP_FPM_PM_MAX_SPARE_SERVERS={{ coolify_php_fpm_pm_max_spare_servers }}
DB_USERNAME={{ coolify_db_username }}
DB_PASSWORD={{ coolify_db_password }}
DB_DATABASE={{ coolify_db_database }}
REDIS_PASSWORD={{ coolify_redis_password }}
SOKETI_PORT={{ coolify_soketi_port }}
SOKETI_DEBUG={{ coolify_soketi_debug }}
PUSHER_APP_ID={{ coolify_pusher_app_id }}
PUSHER_APP_KEY={{ coolify_pusher_app_key }}
PUSHER_APP_SECRET={{ coolify_pusher_app_secret }}
{% if coolify_root_username | default('', true) | length > 0 %}
ROOT_USERNAME={{ coolify_root_username }}
{% endif %}
{% if coolify_root_user_email | default('', true) | length > 0 %}
ROOT_USER_EMAIL={{ coolify_root_user_email }}
{% endif %}
{% if coolify_root_user_password | default('', true) | length > 0 %}
ROOT_USER_PASSWORD={{ coolify_root_user_password }}
{% endif %}