10 lines
165 B
Bash
Executable file
10 lines
165 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
sudo apt install -y nginx certbot python3-certbot-nginx
|
|
|
|
sudo systemctl status certbot.timer
|
|
|
|
# sudo certbot --nginx -d example.com
|
|
|