mirror of
https://github.com/dongdigua/dongdigua.github.io
synced 2024-11-24 08:13:08 +08:00
13 lines
315 B
Bash
Executable File
13 lines
315 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if test -f /etc/ssl/gmid.pem; then
|
|
echo "OK certificate exists"
|
|
else
|
|
echo "generating certificate..."
|
|
apk add libressl
|
|
libressl req -x509 -newkey rsa:4096 -nodes \
|
|
-keyout /etc/ssl/private/gmid.key \
|
|
-out /etc/ssl/gmid.pem \
|
|
-days 365 -subj "/CN=$GEMINI_HOST"
|
|
fi
|