9 lines
142 B
Plaintext
Executable File
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
|