blob: ebddaa50245a65eb1345ed625c68cf0278345e64 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
set -eu
adduser --system --no-create-home --verbose --debug nginx
apt install nginx certbot python3-certbot-nginx
certbot --nginx -d shione.net -d www.shione.net
|