26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
# In all environments, the following files are loaded if they exist,
|
|
# the latter taking precedence over the former:
|
|
#
|
|
# * .env contains default values for the environment variables needed by the app
|
|
# * .env.local uncommitted file with local overrides
|
|
# * .env.$APP_ENV committed environment-specific defaults
|
|
# * .env.$APP_ENV.local uncommitted environment-specific overrides
|
|
#
|
|
# Real environment variables win over .env files.
|
|
|
|
# PROD / DEV
|
|
APP_MODE=DEV
|
|
APP_NODES_FILE=application/config/app.php
|
|
APPCLI_NODES_FILE=application/config/app-cli.php
|
|
APP_COMPONENTS_FILE=application/config/components.php
|
|
CONTAINER_INI=application/config/container.php
|
|
CONTAINER_CACHE=var/cache/container
|
|
|
|
# Default page
|
|
PAGE404="/templates/error/404.tpl"
|
|
PAGE501="/templates/error/501.tpl"
|
|
|
|
# Users environment
|
|
MYSQL_PARAM='{"host":"host.docker.internal", "user":"***user***", "pass":"***password***","base":"***basename***", "logsEnable":true}'
|
|
REDIS_PARAM='{"host":"127.0.0.1","port":6379,"connectTimeout":2.5,"backoff":{"algorithm":1,"base":500,"cap":750}, "database":0, "defaultExpire":300}'
|