nginx-letsencrypt-ipv6/entrypoint.sh

92 lines
1.9 KiB
Bash
Raw Normal View History

2019-12-14 22:06:39 +00:00
#!/bin/sh
addr=$(ip -o a | grep inet6 | grep -vE ' lo |fe80' | awk '{ print $4 }')
expanded_addr=$(sipcalc $addr | awk '/^Expanded/ { print $4}')
dnsname=$(echo $expanded_addr | sed 's/:/-/g').has-a.name
echo Getting certificate for $dnsname
wwwroot=/var/www/https
2019-12-14 22:06:39 +00:00
mkdir -p "${wwwroot}"
cat > "/etc/nginx/conf.d/${dnsname}.conf" <<EOF
# required, otherwise nginx complains with > 1 vhost
server_names_hash_bucket_size 128;
server {
listen 80;
listen [::]:80;
server_name ${dnsname};
location /.well-known/acme-challenge/ {
root ${wwwroot};
}
# Everything else -> ssl
location / {
return 301 https://$host$request_uri;
}
}
EOF
mkdir -p /run/nginx
nginx
certbot certonly --agree-tos \
--register-unsafely-without-email \
--non-interactive \
--webroot --webroot-path "${wwwroot}" \
-d "${dnsname}"
cat > "/etc/nginx/conf.d/${dnsname}_ssl.conf" <<EOF
server {
listen 443 ssl;
listen [::]:443 ssl;
ssl_certificate /etc/letsencrypt/live/${dnsname}/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/${dnsname}/privkey.pem;
server_name ${dnsname};
root ${wwwroot};
2019-12-14 22:40:04 +00:00
2019-12-14 22:46:14 +00:00
include /etc/nginx/https.conf;
2019-12-14 22:06:39 +00:00
}
EOF
2019-12-14 22:46:14 +00:00
# create empty file - can be overriden by others
touch /etc/nginx/https.conf
2019-12-15 00:00:03 +00:00
# Do not overwrite if external volume is used!
if [ ! -e ${wwwroot}/index.html ]; then
cat > "${wwwroot}/index.html" <<EOF
Welcome to ${dnsname} running with IPv6+LetsEncrypt.
Find more about fully automated docker containers with letsencrypt certificates on
https://ungleich.ch/u/blog/fully-automated-ssl-certificates-for-docker/
EOF
2019-12-15 00:00:03 +00:00
fi
2019-12-14 22:06:39 +00:00
# restart and run now with cert
pkill nginx
# wait until old process is gone
sleep 2
2019-12-14 23:47:25 +00:00
nginx
if [ -x /entrypoint-post-https.sh ]; then
/entrypoint-post-https.sh
fi
2019-12-15 00:08:37 +00:00
# == sleep infinity, however infinity is not supported in this image!
2019-12-15 00:15:57 +00:00
# cat -- works if stdin does not close
# wait forever by tailing /dev/null - also nice
tail -f /dev/null