123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385 |
- #!/bin/bash
- #
- # author: Koshuba V.O.
- # license: GPL 2.0
- # create 2022
- #
- version="0.5.0";
- sname="avto4certbot";
- # script path
- path_script=$( cd -- $( dirname -- "${BASH_SOURCE[0]}" ) &> /dev/null && pwd );
- source "$path_script/avto4certbot.conf";
- # service LAMP
- web_service="";
- # new certificate or renewal event
- event_sw=0;
- # event begin or end the work script
- event_key="1";
- # message from errors
- reports=();
- # work_sites
- active_sites=();
- ##--@S static values
- # depends
- pkgdep=("curl" "certbot" "letsencrypt") # packages
- get_tools=("curl" "certbot" "letsencrypt")
- # - options
- cmd=$1;
- # - for LAMP server
- opt=$2;
- #--@F Get info area
- function getInfo() {
- ## test - null values
- if [ $tmp_dir == "" ]; then
- tmp_dir="/tmp";
- fi
- web_dir="$tmp_dir/www"
- conf_dir="$tmp_dir/conf"
- if [ $log_file == "" ]; then
- log_file="/var/log/syslog";
- fi
- if [ $sites_nginx == "" ]; then
- available_nginx="/etc/nginx/sites-available";
- fi
- if [ $sites_apache == "" ]; then
- available_apache="/etc/apache2/sites-available";
- fi
- if [ $sites_nginx == "" ]; then
- sites_nginx="/etc/nginx/sites-enabled";
- fi
- if [ $sites_apache == "" ]; then
- sites_apache="/etc/apache2/sites-enabled";
- if [ "$(apachectl -M|grep rewrite|wc -m)" == "0" ]; then
- a2enmod rewrite
- fi
- fi
- ## apache2 mode: prefork or worker (multi-instance)
- if [ $apache2_service == "" ]; then
- apache2_service="apache2";
- fi
- if [ $path_ssl == "" ]; then
- path_ssl="/etc/ssl";
- fi
- if [ $path_cert == "" ]; then
- path_cert="/etc/letsencrypt/live";
- fi
- ## create temp directory
- if [ ! -d $tmp_dir ]; then
- mkdir -p $tmp_dir;
- fi
- ## create web directory
- if [ ! -d "$web_dir/.well-known/acme-challenge" ]; then
- mkdir -p $web_dir/.well-known/acme-challenge;
- chown -R www-data:www-data $web_dir;
- fi
- ## create conf directory
- if [ ! -d $conf_dir ]; then
- mkdir -p $conf_dir;
- fi
- ##
- if [[ "$opt" != "" ]] && [[ $opt != "nginx" ]] && [[ "$opt" == "apache" ]]; then
- find $sites_apache/* -maxdepth 0 -type l -printf '%f\n' >$tmp_dir/active_sites.inf 2>/dev/null;
- get_tools[${#get_tools[@]}]="apache2";
- web_service="$apache2_service";
- fi
- if [[ "$opt" != "" ]] && [[ $opt != "apache" ]] && [[ "$opt" == "nginx" ]]; then
- find $sites_nginx/* -maxdepth 0 -type l -printf '%f\n' >$tmp_dir/active_sites.inf 2>/dev/null;
- get_tools[${#get_tools[@]}]="nginx";
- web_service="nginx";
- fi
- }
- #--@F Check the program dependency
- function checkDep() {
- # - msg debug
- echo "check depends..."
- if [ ! "$lang" ]; then
- lang="C.UTF-8"
- fi
- for ((itools = 0; itools != ${#get_tools[@]}; itools++)); do
- checktool=$(whereis -b ${get_tools[$itools]} | awk '/^'${get_tools[$itools]}':/{print $2}')
- if [[ $checktool = "" ]]; then
- sudo apt install ${pkgdep[$itools]}
- fi
- checktool=$(whereis -b ${get_tools[$itools]} | awk '/^'${get_tools[$itools]}':/{print $2}')
- if [[ $checktool != "" ]]; then
- eval get_${get_tools[$itools]}=$(whereis -b ${get_tools[$itools]} | awk '/^'${get_tools[$itools]}':/{print $2}')
- list_tools[${#list_tools[@]}]="$(whereis -b ${get_tools[$itools]} | awk '/^'${get_tools[$itools]}':/{print $2}')"
- else
- ## lang messages if yes then lang else us...
- reports=()
- reports[${#reports[@]}]="Sorry, there are no required packages to work, please install:${pkgdep[@]}"
- makeErr
- exit
- fi
- done
- }
- function swSites(){
- ## clear active sites
- if [ "$event_key" = "1" ]; then
- active_sites=( $(cat $tmp_dir/active_sites.inf) );
- for ((xd=0; xd != ${#active_sites[@]}; xd++)); do
- if [[ "$opt" != "" ]] && [[ $opt != "nginx" ]] && [[ "$opt" == "apache" ]]; then
- if [ -f $sites_apache/${active_sites[$xd]} ]; then
- rm $sites_apache/${active_sites[$xd]}
- fi
- fi
- if [[ "$opt" != "" ]] && [[ $opt != "apache" ]] && [[ "$opt" == "nginx" ]]; then
- if [ -f $sites_nginx/${active_sites[$xd]} ]; then
- rm $sites_nginx/${active_sites[$xd]}
- fi
- fi
- done
- fi
- ## restore active sites
- if [ "$event_key" = "0" ]; then
- # clear tmp configs
- if [[ "$opt" != "" ]] && [[ $opt != "nginx" ]] && [[ "$opt" == "apache" ]]; then
- rm $sites_apache/*.conf
- fi
- if [[ "$opt" != "" ]] && [[ $opt != "apache" ]] && [[ "$opt" == "nginx" ]]; then
- rm $sites_nginx/*.conf
- fi
- # restore active links
- active_sites=( $(cat $tmp_dir/active_sites.inf) );
- for ((xd=0; xd != ${#active_sites[@]}; xd++)); do
- if [[ "$opt" != "" ]] && [[ $opt != "nginx" ]] && [[ "$opt" == "apache" ]]; then
- if [ ! -f $sites_apache/${active_sites[$xd]} ]; then
- ln -s $available_apache/${active_sites[$xd]} $sites_apache/${active_sites[$xd]}
- fi
- fi
- if [[ "$opt" != "" ]] && [[ $opt != "apache" ]] && [[ "$opt" == "nginx" ]]; then
- if [ ! -f $sites_nginx/${active_sites[$xd]} ]; then
- ln -s $available_nginx/${active_sites[$xd]} $sites_nginx/${active_sites[$xd]}
- fi
- fi
- done
- fi
- }
- ##--@F make all errors
- function makeErr() {
- for ((rpt_index=0; rpt_index != ${#reports[@]}; rpt_index++))
- do
- echo "$rdate $sname: ${reports[$rpt_index]}">>$log_file;
- echo "${reports[$rpt_index]}";
- done
- exit 0;
- }
- function createCert() {
- #
- for ((xd=0; xd != ${#domains[@]}; xd++)); do
- local site_data=( $(echo -e ${domains[$xd]}|sed 's/ /\n /g') );
- site_name="${site_data[0]}";
- site_owner="${site_data[1]}";
- #certbot register -m "$site_owner" -d $site_name
- #sleep 2;
- certbot -m "$site_owner" certonly --webroot --webroot-path $web_dir -d $site_name
- sleep 2;
- done
- }
- ##--@F exec task
- function scanSSL(){
- ## if event - yes
- event_sw=0;
- rdate=$(date +%Y-%m-%d);
- rtime=$(date +%H:%M);
- for ((xd=0; xd != ${#domains[@]}; xd++)); do
- local site_data=( $(echo -e ${domains[$xd]}|sed 's/ /\n /g') );
- site_name="${site_data[0]}";
- keydate=$(ls -l --time-style=long-iso $path_cert/$site_name/cert.pem |awk {'print$6'});
- keytime=$(ls -l --time-style=long-iso $path_cert/$site_name/cert.pem |awk {'print$7'});
- if [[ "$keydate" = "$rdate" ]] && [[ "$keytime" = "$rtime" ]]; then
- ((event_sw++));
- if [ -d $path_cert/$site_name ]; then
- cat $path_cert/$site_name/privkey.pem > $path_ssl/private/privkey_$site_name.pem;
- cat $path_cert/$site_name/fullchain.pem > $path_ssl/private/fullchain_$site_name.pem;
- cat $path_cert/$site_name/fullchain.pem > $path_ssl/private/$site_name.pem;
- cat $path_cert/$site_name/privkey.pem >> $path_ssl/private/$site_name.pem;
- #
- cp -f $path_ssl/private/$site_name.pem $path_ssl/certs/$site_name.pem
- cd $path_ssl/certs
- chmod 600 $site_name.pem
- ln -sf $site_name.pem `openssl x509 -noout -hash < $site_name.pem`.0
- cd $path_ssl
- echo "$(date) - $sname: update cert for $site_name">> $log;
- fi
- fi
- done
- if [ $event_sw != 0 ];then
- echo>/etc/ssl/crt-list.txt
- for ((xd=0; xd != ${#domains[@]}; xd++)); do
- local site_data=( $(echo -e ${domains[$xd]}|sed 's/ /\n /g') );
- echo "$path_ssl/${site_data[0]}.pem">>/etc/ssl/crt-list.txt
- done
- fi
- }
- ##--@F create configs
- function createConf(){
- for ((xd=0; xd != ${#domains[@]}; xd++)); do
- local site_data=( $(echo -e ${domains[$xd]}|sed 's/ /\n /g') );
- site_name="${site_data[0]}";
- site_owner="${site_data[1]}";
- site_port="${site_data[2]}";
- ## apache2 config
- if [[ "$opt" != "" ]] && [[ $opt != "nginx" ]] && [[ "$opt" == "apache" ]]; then
- ## добавить проверку режима apache2 и путь для активации конфигурации
- echo >$conf_dir/$site_name.conf;
- echo -e '<VirtualHost *:'"$site_port"'>' >>$conf_dir/$site_name.conf;
- echo -e ' ServerName '"$site_name"'' >>$conf_dir/$site_name.conf;
- echo -e ' ServerAlias '"$site_name"'' >>$conf_dir/$site_name.conf;
- echo -e ' DocumentRoot '"$web_dir"'' >>$conf_dir/$site_name.conf;
- echo -e ''>>$conf_dir/$site_name.conf;
- echo -e ' <Directory '"$web_dir"'>' >>$conf_dir/$site_name.conf;
- echo -e ' RewriteEngine On'>>$conf_dir/$site_name.conf;
- echo -e ' RewriteCond %{REQUEST_URI} !^/\.well\-known/acme\-challenge/'>>$conf_dir/$site_name.conf;
- echo -e ' Options -Indexes +FollowSymLinks +MultiViews' >>$conf_dir/$site_name.conf;
- echo -e ' AllowOverride All' >>$conf_dir/$site_name.conf;
- echo -e ' Require all granted' >>$conf_dir/$site_name.conf;
- echo -e ' </Directory>\n' >>$conf_dir/$site_name.conf;
- echo -e ' ErrorLog ${APACHE_LOG_DIR}/error.log' >>$conf_dir/$site_name.conf;
- echo -e ' CustomLog ${APACHE_LOG_DIR}/access.log combined' >>$conf_dir/$site_name.conf;
- echo -e '</VirtualHost>' >>$conf_dir/$site_name.conf;
- if [ ! -f $sites_apache/$site_name.conf ]; then
- ln -s $conf_dir/$site_name.conf $sites_apache/$site_name.conf
- fi
- fi
- ## nginx config
- if [[ "$opt" != "" ]] && [[ $opt != "apache" ]] && [[ "$opt" == "nginx" ]]; then
- echo >$conf_dir/$site_name.conf;
- echo -e 'server { listen 0.0.0.0:'"$site_port"';' >>$conf_dir/$site_name.conf;
- echo -e ' server_name '"$site_name"';' >>$conf_dir/$site_name.conf;
- echo -e ' location /.well-known/acme-challenge {' >>$conf_dir/$site_name.conf;
- echo -e ' allow all;' >>$conf_dir/$site_name.conf;
- echo -e ' autoindex off;' >>$conf_dir/$site_name.conf;
- echo -e ' default_type "text/plain";' >>$conf_dir/$site_name.conf;
- echo -e ' root '"$web_dir"';' >>$conf_dir/$site_name.conf;
- echo -e ' }' >>$conf_dir/$site_name.conf;
- echo -e ' location = /.well-known {' >>$conf_dir/$site_name.conf;
- echo -e ' return 404;' >>$conf_dir/$site_name.conf;
- echo -e ' }' >>$conf_dir/$site_name.conf;
- echo -e ' error_page 404 /404.html;' >>$conf_dir/$site_name.conf;
- echo -e ' error_page 500 502 503 504 /50x.html;\n' >>$conf_dir/$site_name.conf;
- echo -e ' error_log /var/log/nginx/err-certbot.log;' >>$conf_dir/$site_name.conf;
- echo -e ' access_log /var/log/nginx/access-certbot.log;' >>$conf_dir/$site_name.conf;
- echo -e '}' >>$conf_dir/$site_name.conf;
- if [ ! -f $sites_nginx/$site_name.conf ]; then
- ln -s $conf_dir/$site_name.conf $sites_nginx/$site_name.conf
- fi
- fi
- done
- }
- ##--@F restart services
- function updateScs(){
- if [[ "${services[@]}" != "" ]] && [[ "${#services[@]}" != "0" ]]; then
- for ((scn=0; scn != ${#services[@]}; scn++)); do
- systemctl restart ${services[$scn]};
- done
- fi
- }
- ##--@F help
- function pHelp(){
- echo "$sname:$version"
- echo "please input pameters: avto4certbot.sh --create [apache & nginx]| --update [apache & nginx] | --flist [apache & nginx]";
- echo "avto4certbot.sh --create; create new certificate or --create [apache & nginx]; create new certificate "
- echo "avto4certbot.sh --update; update certificates or --update [apache & nginx]; update [apache & nginx];"
- echo "avto4certbot.sh --flist; update certificates from ssl or --flist [apache & nginx]; rescan list certificates;"
- echo "avto4certbot.sh --help; this help"
- echo "* examples:"
- echo " avtocertbot.sh --update apache"
- echo " or"
- echo " avtocertbot.sh --update nginx"
- }
- case "$cmd" in
- ## create cert
- "--create" | "--create" )
- if [ "$opt" != "" ]; then
- getInfo;
- checkDep;
- event_key="1";
- systemctl stop $web_service;
- swSites;
- createConf;
- systemctl start $web_service;
- createCert;
- scanSSL;
- event_key="0";
- systemctl stop $web_service;
- swSites;
- systemctl start $web_service;
- else
- pHelp;
- fi
- ;;
- ## update cert
- "--update" | "--update" )
- if [ "$opt" != "" ]; then
- getInfo;
- checkDep;
- event_key="1";
- systemctl stop $web_service;
- swSites;
- createConf;
- systemctl start $web_service;
- certbot -n renew;
- scanSSL;
- event_key="0";
- systemctl stop $web_service;
- swSites;
- systemctl start $web_service;
- else
- pHelp;
- fi
- ;;
- ## create cert
- "--flist" | "--flist" )
- if [ "$opt" != "" ]; then
- getInfo;
- checkDep;
- scanSSL;
- else
- pHelp;
- fi
- ;;
- ## start defaults
- * )
- pHelp;
- ;;
- esac
- exit
|