docker: change ssl volume path

otherwise ca-certificate will be missing
and it can't install package through https
This commit is contained in:
dongdigua 2023-07-12 16:22:35 +08:00
parent 475f5c23bc
commit 7fd67438af
2 changed files with 7 additions and 6 deletions

View File

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

View File

@ -1,6 +1,6 @@
server $gem_host {
cert "/etc/ssl/gmid.pem"
key "/etc/ssl/private/gmid.key"
cert "/ssl/gmid.pem"
key "/ssl/private/gmid.key"
root "/dongdigua.github.io"
cgi "/cgi/*"