#/bin/bash
clear
systemctl stop nginx

read -p 'Enter your doamin :' domain
certbot certonly --standalone -d $domain

systemctl restart nginx
