5 lines
109 B
Bash
5 lines
109 B
Bash
|
#/bin/sh
|
||
|
|
||
|
systemctl stop nginx
|
||
|
certbot certonly -n --standalone --agree-tos -d $1 -m $2
|
||
|
systemctl start nginx
|