Last active
December 16, 2022 15:26
-
-
Save tbvinh/f1b88a41ccf7d7c9f3056af5592b51eb to your computer and use it in GitHub Desktop.
wget -O create-apache-domain.sh https://gist.githubusercontent.com/tbvinh/f1b88a41ccf7d7c9f3056af5592b51eb/raw/create-apache-domain.sh?rnd=`date +%s`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## usage: | |
## ============================ | |
## 1. wget -O create-apache-domain.sh https://gist.githubusercontent.com/tbvinh/f1b88a41ccf7d7c9f3056af5592b51eb/raw/create-apache-domain.sh?rnd=`date +%s` | |
## 2. e.g: /bin/sh create-apache-domain.sh cskh.mobi | |
## INSTALL SSL SINGLE DOMAIN | |
##============================== | |
## apt -y install certbot python3-certbot-apache | |
## certbot --apache | |
## systemctl reload apache2 | |
##============================== | |
if [ $# -eq 0 ] | |
then | |
echo "No arguments supplied, e.g: $0 domain.com" | |
exit 0 | |
fi | |
DOMAIN=$1 | |
if [ ! -f /etc/letsencrypt/live/$DOMAIN/cert.pem ] | |
then | |
certbot --apache -d $DOMAIN --register-unsafely-without-email | |
fi | |
wget -O $DOMAIN.conf https://gist.githubusercontent.com/tbvinh/29f38d311e8697ab286a2c7ddeb87fbb/raw/myoser.com.conf?rnd=`date +%s` | |
wget -O $DOMAIN-ssl.conf https://gist.githubusercontent.com/tbvinh/05f62ede638fffd319409d435373734a/raw/myoser.com-ssl.conf?rnd=`date +%s` | |
sed -i "s/myoser.com/$DOMAIN/g" $DOMAIN.conf | |
sed -i "s/myoser.com/$DOMAIN/g" $DOMAIN-ssl.conf | |
echo ====================================== | |
echo You need sudo copy to Apache, then run: sudo a2ensite $DOMAIN.conf | |
echo ====================================== | |
echo | |
echo cp $DOMAIN.conf $DOMAIN-ssl.conf /etc/apache2/sites-available/ | |
cp $DOMAIN.conf $DOMAIN-ssl.conf /etc/apache2/sites-available/ | |
cd /etc/apache2/sites-available/ | |
a2ensite $DOMAIN.conf | |
a2ensite $DOMAIN-ssl.conf | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment