initial commit

This commit is contained in:
Franz Heinzmann (Frando) 2020-07-14 23:33:07 +02:00
commit bcd52055e7
7 changed files with 117 additions and 0 deletions

9
install-nginx.sh Normal file
View file

@ -0,0 +1,9 @@
# setup nginx
apt install nginx -y
# setup certbot
add-apt-repository ppa:certbot/certbot -y
apt update -y
apt install python-certbot-nginx -y
crontab -l | { cat; echo "0 12 * * * /usr/bin/certbot renew --quiet"; } | crontab -
echo "done!"