10 lines
153 B
Bash
10 lines
153 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -xe
|
||
|
|
||
|
sudo apt-get update && sleep 5
|
||
|
sudo apt-get install -y \
|
||
|
nginx \
|
||
|
certbot \
|
||
|
python3-certbot-dns-digitalocean
|