-
Notifications
You must be signed in to change notification settings - Fork 3
/
.env.example
49 lines (43 loc) · 1.19 KB
/
.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
42
43
44
45
46
47
48
49
#
# Copy and rename this file to .env at root of this project.
#
# A common use case is to supply database creds via the environment. Edit settings.php
# like so:
#
# $databases['default']['default'] = [
# 'database' => getenv('MYSQL_DATABASE'),
# 'driver' => 'mysql',
# 'host' => getenv('MYSQL_HOSTNAME'),
# 'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
# 'password' => getenv('MYSQL_PASSWORD'),
# 'port' => getenv('MYSQL_PORT'),
# 'prefix' => '',
# 'username' => getenv('MYSQL_USER'),
# ];
#
# Uncomment and populate as needed.
## Mysql variables.
# MYSQL_DATABASE=
# MYSQL_HOSTNAME=
# MYSQL_PASSWORD=
# MYSQL_PORT=
# MYSQL_USER=
## Drupal salt
# DRUPAL_HASH_SALT=
## Theme that is going to be used on installation process.
# OS2WEB_THEME=
## Trusted hosts settings.
# DRUPAL_TRUSTED_HOST=
## Migrate DB mysql variables.
# MIGRATE_MYSQL_DATABASE=
# MIGRATE_MYSQL_HOSTNAME=
# MIGRATE_MYSQL_PASSWORD=
# MIGRATE_MYSQL_PORT=
# MIGRATE_MYSQL_USER=
## Variable used only in docker-compose.yaml
# OS2WEB_TAG=
# Meeting folder mounting credentials
# OS2WEB_MEETINGS_MNT_HOST=
# OS2WEB_MEETINGS_MNT_SHARES=
## Port that is used on host machine for reaching out application
# WEB_SERVER_PORT=8098