13 lines
268 B
Bash
Executable file
13 lines
268 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euf -o pipefail
|
|
|
|
cd "$(dirname "$(realpath "$0")")/../"
|
|
|
|
lego \
|
|
--path ./data/.lego \
|
|
--http.port 8080 \
|
|
--tls.port 8443 \
|
|
--email="acme@base23.de" \
|
|
--domains="sso.base23.de" \
|
|
--http renew \
|
|
--renew-hook="./scripts/cert_renew_hook.sh"
|