-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.dist
45 lines (36 loc) · 870 Bytes
/
.env.dist
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
43
44
45
# Project's path (absolute or relative)
PROJECT_NAME=symfony-php-template
PROJECT_PATH=./symfony/
APP_BASE_PATH=./
# Linux users: Set this to user id from the host system to avoid permission problems.
# Get the user id with: "id -u"
USER_ID=
# Security
SSH_KEY_PATH=~/.ssh
# Composer
COMPOSER_PATH=~/.composer
# MySQL
PORT_MYSQL=3306
MYSQL_ROOT_PASSWORD=symfony
MYSQL_DATABASE=symfony
MYSQL_USER=symfony
MYSQL_PASSWORD=symfony
# PHP settings
PHP_TIMEZONE=Europe/Brussels
PHP_MEMORY_LIMIT=-1
# NGINX
PORT_NGINX=80
PROJECT_DOMAIN=symfony.localhost
# RabbitMQ
PORT_RABBITMQ=15672
RABBITMQ_DEFAULT_USER=admin
RABBITMQ_DEFAULT_PASS=admin
# Xdebug
XDEBUG_CONFIG=1
XDEBUG_REMOTE_ENABLE=1
XDEBUG_REMOTE_AUTOSTART=1
XDEBUG_REMOTE_PORT=9000
XDEBUG_REMOTE_HOST=10.254.254.254
XDEBUG_REMOTE_IDEKEY=IDEKEY
# Xdebug IDE configuration.
PHP_IDE_CONFIG=serverName=symfony-docker