Browse Source

to git make

root 4 years ago
commit
1e8481d4f6
4 changed files with 59 additions and 0 deletions
  1. 0 0
      README.md
  2. 13 0
      cleate_certs.sh
  3. 31 0
      dehydrated/make_ssl-dehydrated.sh
  4. 15 0
      dehydrated/renew-ssl.sh

+ 0 - 0
README.md


+ 13 - 0
cleate_certs.sh

@@ -0,0 +1,13 @@
1
+#!/bin/bash
2
+# create new cert
3
+domains=( "nixtech.ru" "qbpro.ru" "support.qbpro.ru" "webmail.qbpro.ru" );
4
+adminmail="stvixfree@gmail.com";
5
+
6
+function createCert() {
7
+for ((dmn=0; dmn != ${#domains[@]}; dmn++))
8
+    do
9
+certbot certonly --standalone -d ${domains[$dmn]} --non-interactive --agree-tos --email $adminmail  --http-01-port=55777
10
+done
11
+}
12
+
13
+createCert;

+ 31 - 0
dehydrated/make_ssl-dehydrated.sh

@@ -0,0 +1,31 @@
1
+#!/bin/bash
2
+# script convert end make ssl sert for https
3
+# info - https://sysadmin.pm/dehydrated-letsencrypt/
4
+#
5
+path_ssl="/etc/ssl/private";
6
+path_certbot="/var/lib/dehydrated/certs";
7
+domains=( "qbpro.ru" "webmail.qbpro.ru" "support.qbpro.ru" );
8
+
9
+function makeSslPem() {
10
+for ((dmn=0; dmn != ${#domains[@]}; dmn++))
11
+    do
12
+    cat $path_certbot/${domains[$dmn]}/cert.pem > $path_ssl/${domains[$dmn]}.pem;
13
+    cat $path_certbot/${domains[$dmn]}/chain.pem >> $path_ssl/${domains[$dmn]}.pem;
14
+    cat $path_certbot/${domains[$dmn]}/fullchain.pem >> $path_ssl/${domains[$dmn]}.pem;
15
+    cat $path_certbot/${domains[$dmn]}/privkey.pem >> $path_ssl/${domains[$dmn]}.pem;
16
+done
17
+}
18
+
19
+function makePemList() {
20
+:>/etc/ssl/crt-list.txt
21
+for ((icrt=0; icrt != ${#domains[@]}; icrt++))
22
+    do
23
+    echo "$path_ssl/${domains[$icrt]}.pem">>/etc/ssl/crt-list.txt
24
+done
25
+}
26
+
27
+## create sets.pem
28
+makeSslPem;
29
+makePemList;
30
+
31
+

+ 15 - 0
dehydrated/renew-ssl.sh

@@ -0,0 +1,15 @@
1
+#!/bin/bash
2
+#
3
+# renew certbot ssl certificates
4
+#
5
+logfile="/var/log/syslog";
6
+
7
+if [ $(dehydrated -c -4|grep 'Certificate will not expire'|wc -l) != 0 ];
8
+    then
9
+	echo "$(date +%c) certbot(dehydrated): no certificates to upgrade...">>$logfile;
10
+	exit;
11
+    else
12
+	/etc/scripts/sertbot/dehydrated/make_ssl-dehydrated.sh;
13
+	/etc/init.d/haproxy restart;
14
+	echo "$(date +%c) certbot(dehydrated): updating sertificate">>$logfile;
15
+fi