9 lines
303 B
Plaintext
Executable File
9 lines
303 B
Plaintext
Executable File
#!/usr/bin/with-contenv bash
|
|
# shellcheck shell=bash
|
|
|
|
cd /config/keys/letsencrypt || exit 1
|
|
openssl pkcs12 -export -out privkey.pfx -inkey privkey.pem -in cert.pem -certfile chain.pem -passout pass:
|
|
sleep 1
|
|
cat {privkey,fullchain}.pem >priv-fullchain-bundle.pem
|
|
chown -R abc:abc /config/etc/letsencrypt
|