#!/bin/bash # MICA infra set -e if [ -z $SNSTERGUARD ] ; then exit 1; fi DIR=`dirname $0` cd `dirname $0` # disable systemd-resolved which conflicts with nsd echo "DNSStubListener=no" >> /etc/systemd/resolved.conf systemctl stop systemd-resolved # manage mica.sns zone apt-get update DEBIAN_FRONTEND=noninteractive apt-get install -y unbound cp dns.conf /etc/unbound/unbound.conf.d/ # Install smallstep CA / ACME server cd /tmp wget https://github.com/smallstep/cli/releases/download/v0.17.2/step-cli_0.17.2_amd64.deb dpkg -i step-cli_0.17.2_amd64.deb wget https://github.com/smallstep/certificates/releases/download/v0.17.2/step-ca_0.17.2_amd64.deb dpkg -i step-ca_0.17.2_amd64.deb # step ca init # step ca root root.crt # step ca provisioner add acme --type ACME # certbot certonly -n --standalone -d www.target.sns --server https://www.mica.sns/acme/acme/directory --agree-tos --email "fr@fr.fr"