mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-07 07:56:12 +00:00
* add a switch to allow usage of specific ssl cert * add documentation how to specify own certificates and what to do when running web behind an existing proxy
13 lines
234 B
Bash
Executable File
13 lines
234 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# services need to be aware of the machine-id
|
|
if [ "$AUTOCONFIG" = "yes" ]; then
|
|
dockerize \
|
|
-wait file:///etc/machine-id \
|
|
-wait file:///var/lib/dbus/machine-id
|
|
fi
|
|
|
|
exec kwebd caddy -conf /etc/kweb.cfg -agree
|