feat: default nginx config
This commit is contained in:
parent
ee4b9a6ee6
commit
b9950596bb
6 changed files with 137 additions and 0 deletions
22
servers/skel/docker-compose.d/custom/nginx/entrypoint.sh
Normal file
22
servers/skel/docker-compose.d/custom/nginx/entrypoint.sh
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#!/bin/sh
|
||||
|
||||
trap exit TERM
|
||||
|
||||
if [ -n "${CERTBOT_DOMAINS}" ]; then
|
||||
echo "registering domains..."
|
||||
|
||||
certbot --nginx -n --agree-tos \
|
||||
-m "${CERTBOT_EMAIL}" \
|
||||
-d "${CERTBOT_DOMAINS}"
|
||||
|
||||
while :; do
|
||||
echo "renewing domains..."
|
||||
certbot --nginx -n renew
|
||||
nginx -s reload
|
||||
sleep 12h & wait $!
|
||||
done &
|
||||
else
|
||||
echo "skipping certbot due to no domains!"
|
||||
fi
|
||||
|
||||
exec nginx -g "daemon off;"
|
||||
Loading…
Add table
Add a link
Reference in a new issue