|
@@ -37,6 +37,9 @@ cmd=$1;
|
37
|
37
|
# - for LAMP server
|
38
|
38
|
opt=$2;
|
39
|
39
|
|
|
40
|
+# - for proxy mode
|
|
41
|
+sw_proxy=$3;
|
|
42
|
+
|
40
|
43
|
#--@F Get info area
|
41
|
44
|
function getInfo() {
|
42
|
45
|
## test - null values
|
|
@@ -196,8 +199,6 @@ for ((xd=0; xd != ${#domains[@]}; xd++)); do
|
196
|
199
|
local site_data=( $(echo -e ${domains[$xd]}|sed 's/ /\n /g') );
|
197
|
200
|
site_name="${site_data[0]}";
|
198
|
201
|
site_owner="${site_data[1]}";
|
199
|
|
- #certbot register -m "$site_owner" -d $site_name
|
200
|
|
- #sleep 2;
|
201
|
202
|
certbot -m "$site_owner" certonly --webroot --webroot-path $web_dir -d $site_name
|
202
|
203
|
sleep 2;
|
203
|
204
|
done
|
|
@@ -311,15 +312,17 @@ fi
|
311
|
312
|
##--@F help
|
312
|
313
|
function pHelp(){
|
313
|
314
|
echo "$sname:$version"
|
314
|
|
-echo "please input pameters: avto4certbot.sh --create [apache & nginx]| --update [apache & nginx] | --flist [apache & nginx]";
|
315
|
|
-echo "avto4certbot.sh --create; create new certificate or --create [apache & nginx]; create new certificate "
|
316
|
|
-echo "avto4certbot.sh --update; update certificates or --update [apache & nginx]; update [apache & nginx];"
|
317
|
|
-echo "avto4certbot.sh --flist; update certificates from ssl or --flist [apache & nginx]; rescan list certificates;"
|
|
315
|
+echo "please input pameters: avto4certbot.sh --create [apache & nginx && proxy]| --update [apache & nginx] | --flist [apache & nginx]";
|
|
316
|
+echo "avto4certbot.sh --create; create new certificate or --create [apache & nginx && proxy]; create new certificate "
|
|
317
|
+echo "avto4certbot.sh --update; update certificates or --update [apache & nginx && proxy]; update [apache & nginx];"
|
|
318
|
+echo "avto4certbot.sh --flist; update certificates from ssl or --flist [apache & nginx && proxy]; rescan list certificates;"
|
318
|
319
|
echo "avto4certbot.sh --help; this help"
|
319
|
320
|
echo "* examples:"
|
320
|
321
|
echo " avtocertbot.sh --update apache"
|
321
|
322
|
echo " or"
|
322
|
323
|
echo " avtocertbot.sh --update nginx"
|
|
324
|
+echo " or"
|
|
325
|
+echo " avtocertbot.sh --update apache proxy"
|
323
|
326
|
}
|
324
|
327
|
|
325
|
328
|
case "$cmd" in
|
|
@@ -329,11 +332,72 @@ if [ "$opt" != "" ]; then
|
329
|
332
|
getInfo;
|
330
|
333
|
checkDep;
|
331
|
334
|
event_key="1";
|
|
335
|
+ if [ $sw_proxy == "proxy" ]; then
|
|
336
|
+ if [[ "$http_proxy" != "" ]] && [[ "$(systemctl list-units|grep "$http_proxy"|wc -m)" != "0" ]]; then
|
|
337
|
+ systemctl stop $http_proxy
|
|
338
|
+ createConf;
|
|
339
|
+ systemctl start $web_service;
|
|
340
|
+ createCert;
|
|
341
|
+ scanSSL;
|
|
342
|
+ event_key="0";
|
|
343
|
+ systemctl stop $web_service;
|
|
344
|
+ swSites;
|
|
345
|
+ updateScs;
|
|
346
|
+ systemctl start $http_proxy
|
|
347
|
+ else
|
|
348
|
+ reports=()
|
|
349
|
+ reports[${#reports[@]}]="Sorry, there are not found proxy: $http_proxy"
|
|
350
|
+ makeErr
|
|
351
|
+ exit
|
|
352
|
+ fi
|
|
353
|
+ else
|
|
354
|
+ systemctl stop $web_service;
|
|
355
|
+ swSites;
|
|
356
|
+ createConf;
|
|
357
|
+ systemctl start $web_service;
|
|
358
|
+ createCert;
|
|
359
|
+ scanSSL;
|
|
360
|
+ event_key="0";
|
|
361
|
+ systemctl stop $web_service;
|
|
362
|
+ swSites;
|
|
363
|
+ systemctl start $web_service;
|
|
364
|
+ updateScs;
|
|
365
|
+ fi
|
|
366
|
+else
|
|
367
|
+ pHelp;
|
|
368
|
+fi
|
|
369
|
+ ;;
|
|
370
|
+
|
|
371
|
+ ## update cert
|
|
372
|
+ "--update" | "--update" )
|
|
373
|
+if [ "$opt" != "" ]; then
|
|
374
|
+ getInfo;
|
|
375
|
+ checkDep;
|
|
376
|
+ event_key="1";
|
|
377
|
+ if [ $sw_proxy == "proxy" ]; then
|
|
378
|
+ if [[ "$http_proxy" != "" ]] && [[ "$(systemctl list-units|grep "$http_proxy"|wc -m)" != "0" ]]; then
|
|
379
|
+ systemctl stop $http_proxy
|
|
380
|
+ createConf;
|
|
381
|
+ systemctl start $web_service;
|
|
382
|
+ certbot -n renew;
|
|
383
|
+ scanSSL;
|
|
384
|
+ event_key="0";
|
|
385
|
+ systemctl stop $web_service;
|
|
386
|
+ swSites;
|
|
387
|
+ updateScs;
|
|
388
|
+ systemctl start $http_proxy
|
|
389
|
+ else
|
|
390
|
+ reports=()
|
|
391
|
+ reports[${#reports[@]}]="Sorry, there are not found proxy: $http_proxy"
|
|
392
|
+ makeErr
|
|
393
|
+ exit
|
|
394
|
+ fi
|
|
395
|
+ else
|
332
|
396
|
systemctl stop $web_service;
|
333
|
397
|
swSites;
|
334
|
398
|
createConf;
|
335
|
399
|
systemctl start $web_service;
|
336
|
|
- createCert;
|
|
400
|
+ certbot -n renew;
|
337
|
401
|
scanSSL;
|
338
|
402
|
event_key="0";
|
339
|
403
|
systemctl stop $web_service;
|
|
@@ -345,35 +409,26 @@ else
|
345
|
409
|
fi
|
346
|
410
|
;;
|
347
|
411
|
|
348
|
|
- ## update cert
|
349
|
|
- "--update" | "--update" )
|
350
|
|
-if [ "$opt" != "" ]; then
|
351
|
|
- getInfo;
|
352
|
|
- checkDep;
|
353
|
|
- event_key="1";
|
354
|
|
- systemctl stop $web_service;
|
355
|
|
- swSites;
|
356
|
|
- createConf;
|
357
|
|
- systemctl start $web_service;
|
358
|
|
- certbot -n renew;
|
359
|
|
- scanSSL;
|
360
|
|
- event_key="0";
|
361
|
|
- systemctl stop $web_service;
|
362
|
|
- swSites;
|
363
|
|
- systemctl start $web_service;
|
364
|
|
- updateScs;
|
365
|
|
-else
|
366
|
|
- pHelp;
|
367
|
|
-fi
|
368
|
|
- ;;
|
369
|
|
-
|
370
|
412
|
## create cert
|
371
|
413
|
"--flist" | "--flist" )
|
372
|
414
|
if [ "$opt" != "" ]; then
|
373
|
|
- getInfo;
|
374
|
|
- checkDep;
|
375
|
|
- scanSSL;
|
376
|
|
- updateScs;
|
|
415
|
+ getInfo;
|
|
416
|
+ checkDep;
|
|
417
|
+ if [ $sw_proxy == "proxy" ]; then
|
|
418
|
+ if [[ "$http_proxy" != "" ]] && [[ "$(systemctl list-units|grep "$http_proxy"|wc -m)" != "0" ]]; then
|
|
419
|
+ scanSSL;
|
|
420
|
+ systemctl restart $http_proxy
|
|
421
|
+ updateScs;
|
|
422
|
+ else
|
|
423
|
+ reports=()
|
|
424
|
+ reports[${#reports[@]}]="Sorry, there are not found proxy: $http_proxy"
|
|
425
|
+ makeErr
|
|
426
|
+ exit
|
|
427
|
+ fi
|
|
428
|
+ else
|
|
429
|
+ scanSSL;
|
|
430
|
+ systemctl restart $web_service;
|
|
431
|
+ updateScs;
|
377
|
432
|
else
|
378
|
433
|
pHelp;
|
379
|
434
|
fi
|
|
@@ -385,4 +440,4 @@ fi
|
385
|
440
|
;;
|
386
|
441
|
esac
|
387
|
442
|
|
388
|
|
-exit
|
|
443
|
+exit
|