mirror of
https://github.com/Luzifer/nginx-sso.git
synced 2024-12-20 12:51:17 +00:00
17 lines
493 B
Bash
Executable file
17 lines
493 B
Bash
Executable file
#!/usr/local/bin/dumb-init /bin/bash
|
|
set -euo pipefail
|
|
|
|
# Copy frontend if not available
|
|
[ -d /data/frontend ] || cp -r /usr/local/share/nginx-sso/frontend /data/frontend
|
|
|
|
[ -e /data/config.yaml ] || {
|
|
cp /usr/local/share/nginx-sso/config.yaml /data/config.yaml
|
|
echo "An example configuration was copied to /data/config.yaml - You want to edit that one!"
|
|
exit 1
|
|
}
|
|
|
|
echo "Starting nginx-sso"
|
|
exec /usr/local/bin/nginx-sso \
|
|
--config /data/config.yaml \
|
|
--frontend-dir /data/frontend \
|
|
$@
|