Moved nextcloud to single config file
This commit is contained in:
parent
7965403624
commit
f95e9f4154
3 changed files with 9 additions and 8 deletions
21
nextcloud/.env.example
Normal file
21
nextcloud/.env.example
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Database settings
|
||||
POSTGRES_HOST=db
|
||||
POSTGRES_DB=nextcloud
|
||||
POSTGRES_USER=nextcloud
|
||||
POSTGRES_PASSWORD=pass
|
||||
|
||||
# Redis
|
||||
REDIS_HOST=redis
|
||||
|
||||
# Admin Settings
|
||||
NEXTCLOUD_ADMIN_USER=root
|
||||
NEXTCLOUD_ADMIN_PASSWORD=changeme
|
||||
|
||||
# Not sure if this one is needed
|
||||
APACHE_DISABLE_REWRITE_IP=1
|
||||
|
||||
# Allow usage with nginx container
|
||||
TRUSTED_PROXIES=nginx
|
||||
|
||||
# Put the URL of your nextcloud instance here
|
||||
NEXTCLOUD_TRUSTED_DOMAINS=
|
||||
Reference in a new issue