-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
41 lines (28 loc) · 979 Bytes
/
.env.example
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
# The name of the Docker Compose project
COMPOSE_PROJECT_NAME=craftcms
# The redis host to use for cache
CACHE_HOST=
# The redis port to use for cache
CACHE_PORT=6379
# The database driver that will used ('mysql' or 'pgsql')
DB_DRIVER=mysql
# The database server name or IP address (usually this is 'localhost' or '127.0.0.1')
DB_SERVER=db.craftcms3_back
# The database username to connect with
DB_USER=craftcms
# The database password to connect with
DB_PASSWORD=craftcms
# The name of the database to select
DB_DATABASE=craftcms
# The database schema that will be used (PostgreSQL only)
DB_SCHEMA=public
# The prefix that should be added to generated table names (only necessary if multiple things are sharing the same database)
DB_TABLE_PREFIX=
# The database port to connect with
DB_PORT=3306
# The redis host to use for sessions
SESSION_HOST=
# The redis port to use for sessions
SESSION_PORT=6379
# The timezone for environments that read this variable
TZ=UTC