mirror of
https://github.com/elyby/accounts.git
synced 2024-11-10 07:22:00 +05:30
c0aa78d156
Completely removed usage of the RabbitMQ. Queue now based on Redis channels. Worker process now extracted as separate docker container. Base image upgraded to the 1.8.0 version (PHP 7.2.7 and pcntl extension).
55 lines
1.2 KiB
Plaintext
55 lines
1.2 KiB
Plaintext
# Параметры приложения
|
|
## Env приложения
|
|
YII_DEBUG=true
|
|
YII_ENV=dev
|
|
DOMAIN=https://account.ely.by
|
|
|
|
## Параметры, отвечающие за безопасность
|
|
JWT_USER_SECRET=
|
|
|
|
## Внешние сервисы
|
|
RECAPTCHA_PUBLIC=
|
|
RECAPTCHA_SECRET=
|
|
SENTRY_DSN=
|
|
|
|
## SMTP параметры
|
|
SMTP_USER=
|
|
SMTP_PASS=
|
|
SMTP_PORT=
|
|
|
|
## Параметры подключения к базе данных
|
|
DB_HOST=db
|
|
DB_DATABASE=ely_accounts
|
|
DB_USER=ely_accounts_user
|
|
DB_PASSWORD=ely_accounts_password
|
|
|
|
## Параметры подключения к redis
|
|
REDIS_HOST=redis
|
|
REDIS_PORT=6379
|
|
REDIS_DATABASE=0
|
|
REDIS_PASSWORD=
|
|
|
|
## Параметры Statsd
|
|
STATSD_HOST=statsd.ely.by
|
|
STATSD_PORT=8125
|
|
# This value can be blank
|
|
STATSD_NAMESPACE=
|
|
|
|
## Конфигурация для Dev.
|
|
XDEBUG_CONFIG=remote_host=10.254.254.254
|
|
PHP_IDE_CONFIG=serverName=docker
|
|
|
|
|
|
# Web
|
|
VIRTUAL_HOST=account.ely.by,authserver.ely.by
|
|
AUTHSERVER_HOST=authserver.ely.by
|
|
# LETSENCRYPT_HOST=account.ely.by
|
|
# LETSENCRYPT_EMAIL=erickskrauch@ely.by
|
|
|
|
# MySQL
|
|
MYSQL_ALLOW_EMPTY_PASSWORD=yes
|
|
MYSQL_ROOT_PASSWORD=
|
|
MYSQL_DATABASE=ely_accounts
|
|
MYSQL_USER=ely_accounts_user
|
|
MYSQL_PASSWORD=ely_accounts_password
|