mirror of
https://github.com/dockersrc/alpine
synced 2025-09-18 03:57:51 -04:00
Some checks failed
alpine-3-16 / alpine-3-16 (push) Failing after 38m2s
alpine-3-15 / alpine-3-15 (push) Failing after 44m31s
alpine-3-14 / alpine-3-14 (push) Failing after 48m18s
alpine-latest / alpine-latest (push) Failing after 12m15s
alpine-edge / alpine-edge (push) Failing after 12m23s
alpine-3-20 / alpine-3-20 (push) Failing after 12m47s
alpine-3-22 / alpine-3-20 (push) Failing after 30m58s
alpine-3-21 / alpine-3-20 (push) Failing after 50m35s
alpine-3-19 / alpine-3-19 (push) Failing after 50m47s
alpine-3-18 / alpine-3-18 (push) Failing after 50m58s
alpine-3-17 / alpine-3-17 (push) Failing after 51m0s
20 lines
722 B
Bash
20 lines
722 B
Bash
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# ssl server settings
|
|
SSL_ENABLED="${SSL_ENABLED:-false}"
|
|
SSL_DIR="${SSL_CONTAINER_DIR:-/config/ssl}"
|
|
SSL_DIR="${SSL_DIR:-$SSL_DIR}"
|
|
SSL_CA="${SSL_CA:-$SSL_DIR/ca.crt}"
|
|
SSL_KEY="${SSL_KEY:-$SSL_DIR/server.key}"
|
|
SSL_CERT="${SSL_CERT:-$SSL_DIR/server.crt}"
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
# certificate settings
|
|
RSA="${RSA:-4096}"
|
|
STATE="${STATE:-NY}"
|
|
CITY="${CITY:-Albany}"
|
|
COUNTRY="${COUNTRY:-US}"
|
|
UNIT="${UNIT:-CasjaysDev}"
|
|
ORG="${ORG:-"Casjays Developments"}"
|
|
DAYS_VALID="${DAYS_VALID:-3650}"
|
|
CN="${CN:-${FULL_DOMAIN_NAME:-$HOSTNAME}}"
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|