Adds back some config settings in order to confirm they are set on each startup
This commit is contained in:
parent
e628a70b60
commit
3d8ea24781
5
start.sh
5
start.sh
|
@ -11,7 +11,6 @@ if [ ! -f /app/data/config/config.xml ]; then
|
|||
/app/code/syncthing --generate="/app/data/config"
|
||||
# don't take the whole volume with the default so that we can add additional folders
|
||||
sed -i "s/path=\"\/root\/Sync\/\" /path=\"\/app\/data\/default\/\"/g" /app/data/config/config.xml
|
||||
sed -e 's,<listenAddress>.*</listenAddress>,<listenAddress>tcp://:22000</listenAddress>,' -i /app/data/config/config.xml
|
||||
fi
|
||||
|
||||
cat >/run/ldap.conf <<EOF
|
||||
|
@ -25,6 +24,10 @@ ldap_server cloudron {
|
|||
}
|
||||
EOF
|
||||
|
||||
# Set the listenAddress and the gui enabled to make sure user doesnt lock themselves out by accident.
|
||||
sed -e 's,<listenAddress>.*</listenAddress>,<listenAddress>tcp://:22000</listenAddress>,' -i /app/data/config/config.xml
|
||||
sed -e 's,<gui .*>,<gui enabled="true" tls="false" debugging="false">,' -i /app/data/config/config.xml
|
||||
|
||||
export STNODEFAULTFOLDER=1 STNOUPGRADE=1
|
||||
exec busybox init
|
||||
|
||||
|
|
Loading…
Reference in New Issue