40 lines
2.0 KiB
Bash
Executable File
40 lines
2.0 KiB
Bash
Executable File
#!/bin/sh
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
if test "${DONT_GEN_SSL_CERT-set}" = set; then
|
|
# Generate new SSL certificate instead of using the default
|
|
mkdir -p /tmp/ssl/
|
|
cd /tmp/ssl/
|
|
mkdir -p certs/ca
|
|
openssl genrsa -out certs/ca/root.key.pem 2048
|
|
openssl req -x509 -new -nodes -key certs/ca/root.key.pem -days 9131 -out certs/ca/root.crt.pem -subj "/C=DE/ST=BW/L=Stuttgart/O=Dummy Authority/CN=Dummy Authority"
|
|
mkdir -p certs/servers
|
|
mkdir -p certs/tmp
|
|
mkdir -p certs/servers/localhost
|
|
openssl genrsa -out certs/servers/localhost/privkey.pem 2048
|
|
if test "${cert_domain-set}" = set; then
|
|
openssl req -key certs/servers/localhost/privkey.pem -new -sha256 -out certs/tmp/localhost.csr.pem -subj "/C=DE/ST=BW/L=Stuttgart/O=Dummy Authority/CN=localhost"
|
|
else
|
|
openssl req -key certs/servers/localhost/privkey.pem -new -sha256 -out certs/tmp/localhost.csr.pem -subj "/C=DE/ST=BW/L=Stuttgart/O=Dummy Authority/CN=${cert_domain}"
|
|
fi
|
|
openssl x509 -req -in certs/tmp/localhost.csr.pem -CA certs/ca/root.crt.pem -CAkey certs/ca/root.key.pem -CAcreateserial -out certs/servers/localhost/cert.pem -days 9131
|
|
cert_params="\
|
|
--o:ssl.cert_file_path=/tmp/ssl/certs/servers/localhost/cert.pem \
|
|
--o:ssl.key_file_path=/tmp/ssl/certs/servers/localhost/privkey.pem \
|
|
--o:ssl.ca_file_path=/tmp/ssl/certs/ca/root.crt.pem"
|
|
fi
|
|
|
|
extra_params="\
|
|
--o:storage.filesystem[@allow]=true \
|
|
--o:admin_console.username=admin \
|
|
--o:admin_console.password=admin \
|
|
--o:logging.file[@enable]=true --o:logging.level=trace \
|
|
--o:logging_ui_cmd.file[@enable]=true \
|
|
--o:ssl.enable=false \
|
|
--o:trace_event[@enable]=true"
|
|
|
|
# Start coolwsd
|
|
exec /usr/bin/coolwsd --version --use-env-vars ${cert_params} --o:sys_template_path=/opt/cool/systemplate --o:child_root_path=/opt/cool/child-roots --o:file_server_root_path=/usr/share/coolwsd --o:cache_files.path=/opt/cool/cache --o:logging.color=false --o:stop_on_config_change=true ${extra_params} "$@"
|