From ec0e5b645d6c9ab29c971de00e67002937d6c52e Mon Sep 17 00:00:00 2001 From: szaimen Date: Tue, 3 Jan 2023 12:15:50 +0000 Subject: [PATCH] Yaml updates Signed-off-by: GitHub --- manual-install/latest.yml | 11 +---------- manual-install/sample.conf | 1 + 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/manual-install/latest.yml b/manual-install/latest.yml index 4c81dcee..73eb2a2f 100644 --- a/manual-install/latest.yml +++ b/manual-install/latest.yml @@ -9,7 +9,7 @@ services: - nextcloud-aio-nextcloud image: nextcloud/aio-apache:${IMAGE_TAG} ports: - - ${APACHE_PORT}:${APACHE_PORT}/tcp + - ${APACHE_IP_BINDING}:${APACHE_PORT}:${APACHE_PORT}/tcp environment: - NC_DOMAIN=${NC_DOMAIN} - NEXTCLOUD_HOST=nextcloud-aio-nextcloud @@ -23,7 +23,6 @@ services: volumes: - nextcloud_aio_nextcloud:/var/www/html:ro - nextcloud_aio_apache:/mnt/data:rw - stop_grace_period: 10s restart: unless-stopped networks: - nextcloud-aio @@ -97,7 +96,6 @@ services: - STARTUP_APPS=${NEXTCLOUD_STARTUP_APPS} - ADDITIONAL_APKS=${NEXTCLOUD_ADDITIONAL_APKS} - ADDITIONAL_PHP_EXTENSIONS=${NEXTCLOUD_ADDITIONAL_PHP_EXTENSIONS} - stop_grace_period: 10s restart: unless-stopped networks: - nextcloud-aio @@ -109,7 +107,6 @@ services: - TZ=${TIMEZONE} volumes: - nextcloud_aio_redis:/data:rw - stop_grace_period: 10s restart: unless-stopped networks: - nextcloud-aio @@ -124,7 +121,6 @@ services: - TZ=${TIMEZONE} volumes: - nextcloud_aio_collabora_fonts:/opt/cool/systemplate/tmpfonts:rw - stop_grace_period: 10s restart: unless-stopped networks: - nextcloud-aio @@ -142,7 +138,6 @@ services: - JANUS_API_KEY=${JANUS_API_KEY} - TZ=${TIMEZONE} - TALK_PORT=${TALK_PORT} - stop_grace_period: 10s restart: unless-stopped networks: - nextcloud-aio @@ -155,7 +150,6 @@ services: - CLAMD_STARTUP_TIMEOUT=90 volumes: - nextcloud_aio_clamav:/var/lib/clamav:rw - stop_grace_period: 10s restart: unless-stopped networks: - nextcloud-aio @@ -170,7 +164,6 @@ services: - JWT_SECRET=${ONLYOFFICE_SECRET} volumes: - nextcloud_aio_onlyoffice:/var/lib/onlyoffice:rw - stop_grace_period: 10s restart: unless-stopped networks: - nextcloud-aio @@ -180,7 +173,6 @@ services: image: nextcloud/aio-imaginary:${IMAGE_TAG} environment: - TZ=${TIMEZONE} - stop_grace_period: 10s restart: unless-stopped networks: - nextcloud-aio @@ -194,7 +186,6 @@ services: - ES_JAVA_OPTS=-Xms1024M -Xmx1024M volumes: - nextcloud_aio_elasticsearch:/usr/share/elasticsearch/data:rw - stop_grace_period: 10s restart: unless-stopped networks: - nextcloud-aio diff --git a/manual-install/sample.conf b/manual-install/sample.conf index 2eaf66c9..3431df33 100644 --- a/manual-install/sample.conf +++ b/manual-install/sample.conf @@ -1,6 +1,7 @@ IMAGE_TAG=latest # Version of docker images, should be latest or latest-arm64. Note: latest-arm64 has no clamav support AIO_TOKEN=123456 # Has no function but needs to be set! AIO_URL=localhost # Has no function but needs to be set! +APACHE_IP_BINDING=0.0.0.0 # This can be changed to e.g. 127.0.0.1 if you want to run AIO behind a reverse proxy and if that is running on the same host and using localhost to connect APACHE_MAX_SIZE=10737418240 # This needs to be an integer and in sync with NEXTCLOUD_UPLOAD_LIMIT APACHE_PORT=443 # Changing this to a different value than 443 will allow you to run it behind a reverse proxy. CLAMAV_ENABLED=no # Setting this to "yes" enables the option in Nextcloud automatically. Note: latest-arm64 has no clamav support