-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.env
More file actions
42 lines (34 loc) · 1023 Bytes
/
variables.env
File metadata and controls
42 lines (34 loc) · 1023 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# PostgreSQL settings
POSTGRES_USER=phalcon
POSTGRES_PASSWORD=secret
PGDATA=/var/lib/postgresql/data/pgdata
# MySQL settings
MYSQL_ROOT_PASSWORD=secret
MYSQL_DATABASE=phalcondb
MYSQL_USER=phalcon
MYSQL_PASSWORD=secret
# phpMyAdmin settings
PMA_ARBITRARY=1
PMA_HOST=mysql
PMA_PORT=3306
PMA_USER=phalcon
PMA_PASSWORD=secret
PMA_ABSOLUTE_URI=pma.minube.local
# Application
WEB_DOCUMENT_ROOT=/project/application/public
WEB_ALIAS_DOMAIN=minube.local
APPLICATION_CACHE=/project/cache
APPLICATION_LOGS=/project/logs
# production | development | staging | testing
APPLICATION_ENV=development
# Debug
# Note: For debugging purposes you have to setup Xdebug by passing required parameters
PHP_DEBUGGER=xdebug
# Please provide your host (local machine IP) instead of 192.168.1.129
XDEBUG_REMOTE_HOST=192.168.1.129
# php.ini value for xdebug.remote_port
XDEBUG_REMOTE_PORT=9000
# php.ini value for xdebug.remote_autostart
# XDEBUG_REMOTE_AUTOSTART=0
# php.ini value for xdebug.remote_connect_back
XDEBUG_REMOTE_CONNECT_BACK=0