0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-07-29 09:58:06 +02:00
This commit is contained in:
Sandeep 2024-07-29 11:09:41 +02:00 committed by GitHub
commit 7afab2150f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 5 deletions

View file

@ -0,0 +1 @@
VHOST=<your-server-ip-address-or-url-here>

View file

@ -24,7 +24,7 @@ services:
volumes:
- nextcloud:/var/www/html:z
environment:
- VIRTUAL_HOST=
- VIRTUAL_HOST=${VHOST}
- LETSENCRYPT_HOST=
- LETSENCRYPT_EMAIL=
- MYSQL_HOST=db
@ -63,6 +63,8 @@ services:
- /var/run/docker.sock:/tmp/docker.sock:z,ro
networks:
- proxy-tier
environment:
DEFAULT_HOST=${VHOST}
letsencrypt-companion:
image: nginxproxy/acme-companion
@ -85,11 +87,11 @@ services:
# volumes:
# - certs:/certs
# environment:
# - SSL_SUBJECT=servhostname.local
# - SSL_SUBJECT=${VHOST}
# - CA_SUBJECT=my@example.com
# - SSL_KEY=/certs/servhostname.local.key
# - SSL_CSR=/certs/servhostname.local.csr
# - SSL_CERT=/certs/servhostname.local.crt
# - SSL_KEY=/certs/${VHOST}.key
# - SSL_CSR=/certs/${VHOST}.csr
# - SSL_CERT=/certs/${VHOST}.crt
# networks:
# - proxy-tier