change rsa key size
This commit is contained in:
parent
4f3f2e3622
commit
017f5d91ed
|
@ -7,6 +7,8 @@ all:
|
||||||
vars:
|
vars:
|
||||||
ansible_become: false
|
ansible_become: false
|
||||||
|
|
||||||
|
certbotdomains:
|
||||||
|
- "jabber.0rpheus.net"
|
||||||
|
|
||||||
haproxy_domains:
|
haproxy_domains:
|
||||||
# <Domain>: <Backend>
|
# <Domain>: <Backend>
|
||||||
|
|
|
@ -13,12 +13,13 @@ do
|
||||||
--agree-tos \
|
--agree-tos \
|
||||||
--email micha@0rpheus.net \
|
--email micha@0rpheus.net \
|
||||||
--preferred-challenges=http \
|
--preferred-challenges=http \
|
||||||
|
--rsa-key-size 4096 \
|
||||||
--http-01-port=8888
|
--http-01-port=8888
|
||||||
fi
|
fi
|
||||||
done < /etc/haproxy/domains.txt
|
done < /etc/haproxy/domains.txt
|
||||||
|
|
||||||
# renew all certificates
|
# renew all certificates
|
||||||
certbot renew --http-01-port=8888 --preferred-challenges=http
|
certbot renew --http-01-port=8888 --preferred-challenges=http --rsa-key-size 4096
|
||||||
|
|
||||||
# copy certificates
|
# copy certificates
|
||||||
find /etc/letsencrypt/live/ -mindepth 1 -maxdepth 1 -type d | while read -r domain_path
|
find /etc/letsencrypt/live/ -mindepth 1 -maxdepth 1 -type d | while read -r domain_path
|
||||||
|
|
Loading…
Reference in New Issue