mirror.dongdigua.github.io/gmi/docker/genkey.sh
dongdigua 197a1056ab docker: change ssl volume path
otherwise ca-certificate will be missing
and it can't install package through https
2023-07-12 16:22:35 +08:00

14 lines
329 B
Bash
Executable File

#! /bin/sh
if test -f /ssl/gmid.pem; then
echo "OK certificate exists"
else
echo "generating certificate..."
mkdir /ssl
apk add --no-cache libressl
libressl req -x509 -newkey rsa:4096 -nodes \
-keyout /ssl/private/gmid.key \
-out /ssl/gmid.pem \
-days 365 -subj "/CN=$GEMINI_HOST"
fi