mirror of
https://github.com/linuxserver/docker-swag.git
synced 2024-10-01 01:35:49 -04:00
10 lines
339 B
Plaintext
10 lines
339 B
Plaintext
#!/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
|
|
chmod 600 priv-fullchain-bundle.pem
|
|
chown -R abc:abc /config/etc/letsencrypt
|