-
Notifications
You must be signed in to change notification settings - Fork 4
/
.env.dist
42 lines (35 loc) · 942 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
# Uncomment line below on production server to skip docker-compose -f options
#COMPOSE_FILE=compose.yml:compose.prod.yml
IMAGES_PREFIX=extalion/nextcloud
###> Nextcloud ###
NEXTCLOUD_ADMIN_USER=admin
NEXTCLOUD_ADMIN_PASSWORD=!ChangeMe!
NEXTCLOUD_DEFAULT_PHONE_REGION=PL
NEXTCLOUD_MAINTENANCE_WINDOW_START=2
# Nextcloud domain (without reverse proxy it's localhost and docker service)
NEXTCLOUD_TRUSTED_DOMAINS="localhost nginx"
OVERWRITECLIURL=http://localhost
OVERWRITEPROTOCOL=http
TRUSTED_PROXIES=172.0.0.0/24
###< Nextcloud ###
###> Nginx ###
NEXTCLOUD_HOST=127.0.0.1
NEXTCLOUD_PORT=80
###< Nginx ###
###> Db ###
MYSQL_DATABASE=nextcloud
MYSQL_PASSWORD=!ChangeMe!
MYSQL_PORT=3306
MYSQL_USER=nextcloud
###< Db ###
###> Redis ###
REDIS_HOST_PASSWORD=!ChangeMe!
###< Redis ###
###> Devel ###
XDEBUG_IDEKEY=xdebug
XDEBUG_HOST=host.docker.internal
XDEBUG_PORT=9003
XDEBUG_MODE=develop
XDEBUG_LOG_LEVEL=7
MAILER_PORT=8025
###< Devel ###