websites/pyrocufflink.net: Use lego certificate
This commit updates the configuration for *pyrocufflink.net* to use the wildcard certificate managed by *lego* instead of an unique certificate managed by *certbot*.jenkins-master
parent
f4510972f4
commit
0694594445
2
.certs
2
.certs
|
@ -1 +1 @@
|
|||
Subproject commit e335178e3fe9df1a82ac3de735d703b6a08939d0
|
||||
Subproject commit 7685cddf5200f168e26df2cf2b2863bc3e9dadb5
|
|
@ -0,0 +1 @@
|
|||
../lego/_.pyrocufflink.net.crt
|
|
@ -0,0 +1 @@
|
|||
../lego/_.pyrocufflink.net.key
|
|
@ -6,8 +6,4 @@ nratonpass_publisher_keys: '{{ dchwww_publisher_keys }}'
|
|||
dcow_publisher_keys: '{{ dchwww_publisher_keys }}'
|
||||
chmod777_publisher_keys: '{{ dchwww_publisher_keys }}'
|
||||
apache_server_name: pyrocufflink.net
|
||||
apache_ssl_certificate:
|
||||
/var/lib/letsencrypt/live/pyrocufflink.net/fullchain.pem
|
||||
apache_ssl_certificate_key:
|
||||
/var/lib/letsencrypt/live/pyrocufflink.net/privkey.pem
|
||||
userdir_proxy_backend: http://files.pyrocufflink.blue
|
||||
|
|
1
hosts
1
hosts
|
@ -17,7 +17,6 @@ burp1.pyrocufflink.blue
|
|||
|
||||
[certbot]
|
||||
bw0.pyrocufflink.blue
|
||||
web0.pyrocufflink.blue
|
||||
|
||||
[dch-proxy]
|
||||
rprx0.pyrocufflink.blue
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
dependencies:
|
||||
- role: certbot
|
||||
certbot_domains:
|
||||
- pyrocufflink.net
|
|
@ -3,8 +3,8 @@
|
|||
<VirtualHost _default_:443>
|
||||
ServerName pyrocufflink.net
|
||||
Include conf.d/ssl.include
|
||||
SSLCertificateFile {{ apache_ssl_certificate }}
|
||||
SSLCertificateKeyFile {{ apache_ssl_certificate_key }}
|
||||
SSLCertificateFile /etc/pki/tls/certs/pyrocufflink.net.cer
|
||||
SSLCertificateKeyFile /etc/pki/tls/private/pyrocufflink.net.key
|
||||
|
||||
ProxyRequests Off
|
||||
RewriteEngine On
|
||||
|
|
|
@ -3,6 +3,14 @@
|
|||
apache_default_ssl_vhost: false
|
||||
roles:
|
||||
- apache
|
||||
- role: cert
|
||||
vars:
|
||||
cert_src: websites/pyrocufflink.net.cer
|
||||
cert_dest: /etc/pki/tls/certs/pyrocufflink.net.cer
|
||||
cert_key_src: websites/pyrocufflink.net.key
|
||||
cert_key_dest: /etc/pki/tls/private/pyrocufflink.net.key
|
||||
tags:
|
||||
- websites/pyrocufflink.net
|
||||
- role: websites/pyrocufflink.net
|
||||
tags: websites/pyrocufflink.net
|
||||
- role: websites/dustin.hatch.name
|
||||
|
|
Loading…
Reference in New Issue