Files
sh/certbot
T
2026-05-22 15:21:21 +08:00

9 lines
142 B
Plaintext
Executable File

#/bin/bash
clear
systemctl stop nginx
read -p 'Enter your doamin :' domain
certbot certonly --standalone -d $domain
systemctl restart nginx