-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
60 lines (54 loc) · 1.59 KB
/
Copy path.env.example
File metadata and controls
60 lines (54 loc) · 1.59 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# ************************************* #
# ---------------- App ---------------- #
# ************************************* #
APP_NAME=app
APP_URL=http://localhost/
APP_DEBUG=true
# ************************************* #
# --------------- Nginx --------------- #
# ************************************* #
APPLICATION=./backend
NGINX_HOST_HTTP_PORT=80
NGINX_HOST_HTTPS_PORT=444
NGINX_HOST_LOG_PATH=./environments/development/logs/
NGINX_SITES_PATH=./environments/development/conf/nginx/sites/
FPM_PORT=9000
# ************************************* #
# --------------- MYSQL --------------- #
# ************************************* #
DB_CONNECTION=mysql
DB_HOST=mysql
DB_PORT=3306
DB_DATABASE=app
DB_ROOT_PASSWORD=123
DB_USERNAME=admin
DB_PASSWORD=123
# ************************************* #
# --------------- Redis --------------- #
# ************************************* #
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_USERNAME=default
REDIS_PASSWORD=123
# ************************************* #
# -------------- Bugsnag -------------- #
# ************************************* #
BUGSNAG_API_KEY=
# ************************************* #
# ------------ Elasticsearc ----------- #
# ************************************* #
ELASTIC_HTTP=9200
ELASTIC_HTTPS=9300
ELASTIC_HOST=elasticsearch
ELASTIC_LOGS_INDEX=app_index
KIBANA_PORT=5601
# ************************************* #
# -------------- RabbitMQ ------------- #
# ************************************* #
RABBITMQ_HOST=rabbitmq
RABBITMQ_PORT=5672
RABBITMQ_PORT_HTTPS=15672
RABBITMQ_USER=root
RABBITMQ_PASSWORD=123
RABBITMQ_DEFAULT_PASS=123
RABBITMQ_DEFAULT_USER=root