File tree 1 file changed +11
-0
lines changed
Containers/mastercontainer 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -268,6 +268,17 @@ elif mountpoint -q /etc/timezone; then
268
268
exit 1
269
269
fi
270
270
271
+ # Check if unsupported env are set (but don't exit as it would break many instances)
272
+ if [ -n " $APACHE_DISABLE_REWRITE_IP " ]; then
273
+ print_red " The environmental variable APACHE_DISABLE_REWRITE_IP has been set which is not supported by AIO. Please remove it!"
274
+ fi
275
+ if [ -n " $NEXTCLOUD_TRUSTED_DOMAINS " ]; then
276
+ print_red " The environmental variable NEXTCLOUD_TRUSTED_DOMAINS has been set which is not supported by AIO. Please remove it!"
277
+ fi
278
+ if [ -n " $TRUSTED_PROXIES " ]; then
279
+ print_red " The environmental variable TRUSTED_PROXIES has been set which is not supported by AIO. Please remove it!"
280
+ fi
281
+
271
282
# Add important folders
272
283
mkdir -p /mnt/docker-aio-config/data/
273
284
mkdir -p /mnt/docker-aio-config/session/
You can’t perform that action at this time.
0 commit comments