-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
executable file
·38 lines (33 loc) · 1.27 KB
/
.env
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
########################################################################
# MySQL
########################################################################
MYSQL_PORT=3306
MYSQL_ROOT_PASSWORD=""
MYSQL_DATABASE=symfony
MYSQL_USER=root
MYSQL_PASSWORD=""
DATABASE_URL=mysql://root:@db:3306/symfony
########################################################################
# PHP
########################################################################
PHP_PORT=9000
PHP_XDEBUG_MODE=off
PHP_XDEBUG_CLIENT_PORT=5902
PHP_XDEBUG_CLIENT_HOST=host.docker.internal
########################################################################
# PHPMyAdmin
########################################################################
PHPMYADMIN_PORT=8080
########################################################################
# NGINX
########################################################################
NGINX_PORT=80
NGINX_SYMFONY_SERVER_NAME=symfony.localhost
########################################################################
# Elasticsearch
########################################################################
ELASTICSEARCH_PORT=9200
########################################################################
# Kibana
########################################################################
KIBANA_PORT=81