9a2d3a3760
To configure SAML, ENABLE_SAML must be set to True in .env. Additionally, the following files must be provided in ./secrets/saml/: - sp.crt - sp.key - saml_settings.json The files will be added as Docker secrets. Even though saml_settings.json does not contain secret information per se it is nonetheless added as a secret for simplicity. Technically, the file is equally suited to be configured as a "Docker config". Please note: - This patch has not been tested yet. - python3-saml's version should probably be pinned.
27 lines
599 B
Bash
Executable File
27 lines
599 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Set DJANGO_SECRET_KEY variable
|
|
source /run/secrets/django
|
|
[[ -n "$DJANGO_SECRET_KEY" ]] || {
|
|
echo "ERROR: Django secret key undefined! Cannot continue."
|
|
sleep 5
|
|
exit 2
|
|
}
|
|
export SECRET_KEY="$DJANGO_SECRET_KEY"
|
|
|
|
# SAML setup
|
|
. /usr/local/lib/saml-setup.sh
|
|
|
|
# TODO: env variable for this host
|
|
wait-for-it -t 0 "server-setup:8000"
|
|
|
|
printf 'Executing server: "%s"\n' "$*"
|
|
|
|
# Expected commands are one of:
|
|
# - daphne -b 0.0.0.0 -p 8000 openslides.asgi:application
|
|
# - gunicorn -w 4 -b 0.0.0.0:8000 -k uvicorn.workers.UvicornWorker \
|
|
# openslides.asgi:application
|
|
exec "$@"
|