wildcard-2023.fedoraproject.org: new wildcard ssl cert
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
parent
6987b8bc1e
commit
47cf07184e
7 changed files with 19 additions and 19 deletions
|
@ -1,4 +1,4 @@
|
||||||
---
|
h-
|
||||||
#######
|
#######
|
||||||
# BEGIN: Ansible roles_path variables
|
# BEGIN: Ansible roles_path variables
|
||||||
#
|
#
|
||||||
|
@ -260,10 +260,10 @@ virt_install_command_two_nic_unsafe: virt-install -n {{ inventory_hostname }} --
|
||||||
vpn: False
|
vpn: False
|
||||||
# This is the wildcard certname for our proxies. It has a different name for
|
# This is the wildcard certname for our proxies. It has a different name for
|
||||||
# the staging group and is used in the proxies.yml playbook.
|
# the staging group and is used in the proxies.yml playbook.
|
||||||
wildcard_cert_name: wildcard-2022.fedoraproject.org
|
wildcard_cert_name: wildcard-2023.fedoraproject.org
|
||||||
wildcard_crt_file: wildcard-2022.fedoraproject.org.cert
|
wildcard_crt_file: wildcard-2023.fedoraproject.org.cert
|
||||||
wildcard_int_file: wildcard-2022.fedoraproject.org.intermediate.cert
|
wildcard_int_file: wildcard-2023.fedoraproject.org.intermediate.cert
|
||||||
wildcard_key_file: wildcard-2022.fedoraproject.org.key
|
wildcard_key_file: wildcard-2023.fedoraproject.org.key
|
||||||
#
|
#
|
||||||
# say if we want the apache role dependency for mod_wsgi or not
|
# say if we want the apache role dependency for mod_wsgi or not
|
||||||
# In some cases we want mod_wsgi and no apache (for python3 httpaio stuff)
|
# In some cases we want mod_wsgi and no apache (for python3 httpaio stuff)
|
||||||
|
|
|
@ -16,12 +16,12 @@
|
||||||
- role: httpd/mod_ssl
|
- role: httpd/mod_ssl
|
||||||
|
|
||||||
- role: httpd/certificate
|
- role: httpd/certificate
|
||||||
certname: wildcard-2022.fedoraproject.org
|
certname: wildcard-2023.fedoraproject.org
|
||||||
SSLCertificateChainFile: wildcard-2022.fedoraproject.org.intermediate.cert
|
SSLCertificateChainFile: wildcard-2023.fedoraproject.org.intermediate.cert
|
||||||
|
|
||||||
- role: httpd/certificate
|
- role: httpd/certificate
|
||||||
certname: wildcard-2022.fedoraproject.org
|
certname: wildcard-2023.fedoraproject.org
|
||||||
SSLCertificateChainFile: wildcard-2022.fedoraproject.org.intermediate.cert
|
SSLCertificateChainFile: wildcard-2023.fedoraproject.org.intermediate.cert
|
||||||
|
|
||||||
- role: httpd/certificate
|
- role: httpd/certificate
|
||||||
certname: wildcard-2022.id.fedoraproject.org
|
certname: wildcard-2022.id.fedoraproject.org
|
||||||
|
@ -42,7 +42,7 @@
|
||||||
SSLCertificateChainFile: wildcard-2023.apps.ocp.stg.fedoraproject.org.intermediate.cert
|
SSLCertificateChainFile: wildcard-2023.apps.ocp.stg.fedoraproject.org.intermediate.cert
|
||||||
when: env == "staging"
|
when: env == "staging"
|
||||||
tags:
|
tags:
|
||||||
- apps.ocp.stg.fedoraproject.org
|
--- apps.ocp.stg.fedoraproject.org
|
||||||
|
|
||||||
- role: httpd/certificate
|
- role: httpd/certificate
|
||||||
certname: wildcard-2022.apps.ocp.fedoraproject.org
|
certname: wildcard-2022.apps.ocp.fedoraproject.org
|
||||||
|
|
|
@ -899,7 +899,7 @@
|
||||||
- role: httpd/website
|
- role: httpd/website
|
||||||
site_name: nagios.fedoraproject.org
|
site_name: nagios.fedoraproject.org
|
||||||
server_aliases: [nagios.stg.fedoraproject.org]
|
server_aliases: [nagios.stg.fedoraproject.org]
|
||||||
SSLCertificateChainFile: wildcard-2022.fedoraproject.org.intermediate.cert
|
SSLCertificateChainFile: wildcard-2023.fedoraproject.org.intermediate.cert
|
||||||
sslonly: true
|
sslonly: true
|
||||||
cert_name: "{{wildcard_cert_name}}"
|
cert_name: "{{wildcard_cert_name}}"
|
||||||
|
|
||||||
|
|
|
@ -56,13 +56,13 @@
|
||||||
- selinux
|
- selinux
|
||||||
|
|
||||||
- name: Copy wildcard cert from puppet private
|
- name: Copy wildcard cert from puppet private
|
||||||
copy: src="{{private}}/files/httpd/wildcard-2022.fedoraproject.org.cert" dest=/etc/pki/tls/certs/wildcard-2022.fedoraproject.org.cert owner=root group=root mode=0644
|
copy: src="{{private}}/files/httpd/wildcard-2023.fedoraproject.org.cert" dest=/etc/pki/tls/certs/wildcard-2023.fedoraproject.org.cert owner=root group=root mode=0644
|
||||||
|
|
||||||
- name: Copy wildcard key from puppet private
|
- name: Copy wildcard key from puppet private
|
||||||
copy: src="{{private}}/files/httpd/wildcard-2022.fedoraproject.org.key" dest=/etc/pki/tls/private/wildcard-2022.fedoraproject.org.key owner=root group=root mode=0600
|
copy: src="{{private}}/files/httpd/wildcard-2023.fedoraproject.org.key" dest=/etc/pki/tls/private/wildcard-2023.fedoraproject.org.key owner=root group=root mode=0600
|
||||||
|
|
||||||
- name: Copy intermediate wildcard cert from puppet private
|
- name: Copy intermediate wildcard cert from puppet private
|
||||||
copy: src="{{private}}/files/httpd/wildcard-2022.fedoraproject.org.intermediate.cert" dest=/etc/pki/tls/certs/wildcard-2022.fedoraproject.org.intermediate.cert owner=root group=root mode=0644
|
copy: src="{{private}}/files/httpd/wildcard-2023.fedoraproject.org.intermediate.cert" dest=/etc/pki/tls/certs/wildcard-2023.fedoraproject.org.intermediate.cert owner=root group=root mode=0644
|
||||||
|
|
||||||
- name: Configure httpd dl main conf
|
- name: Configure httpd dl main conf
|
||||||
template: src=httpd/dl.fedoraproject.org.conf dest=/etc/httpd/conf.d/dl.fedoraproject.org.conf
|
template: src=httpd/dl.fedoraproject.org.conf dest=/etc/httpd/conf.d/dl.fedoraproject.org.conf
|
||||||
|
|
|
@ -98,8 +98,8 @@
|
||||||
|
|
||||||
- name: put our combined cert in place
|
- name: put our combined cert in place
|
||||||
copy: >
|
copy: >
|
||||||
src={{private}}/files/httpd/wildcard-2022.fedoraproject.org.combined.cert
|
src={{private}}/files/httpd/wildcard-2023.fedoraproject.org.combined.cert
|
||||||
dest=/etc/pki/tls/certs/wildcard-2022.fedoraproject.org.combined.cert
|
dest=/etc/pki/tls/certs/wildcard-2023.fedoraproject.org.combined.cert
|
||||||
owner=root group=root mode=0644
|
owner=root group=root mode=0644
|
||||||
notify: restart stunnel
|
notify: restart stunnel
|
||||||
tags:
|
tags:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
cert = /etc/pki/tls/certs/wildcard-2022.fedoraproject.org.combined.cert
|
cert = /etc/pki/tls/certs/wildcard-2023.fedoraproject.org.combined.cert
|
||||||
key = /etc/pki/tls/private/wildcard-2022.fedoraproject.org.key
|
key = /etc/pki/tls/private/wildcard-2023.fedoraproject.org.key
|
||||||
pid = /var/run/stunnel.pid
|
pid = /var/run/stunnel.pid
|
||||||
|
|
||||||
[{{ stunnel_service }}]
|
[{{ stunnel_service }}]
|
||||||
|
|
|
@ -8,7 +8,7 @@ server_admin: webmaster@fedoraproject.org
|
||||||
certbot: false
|
certbot: false
|
||||||
ssl: true
|
ssl: true
|
||||||
sslonly: false
|
sslonly: false
|
||||||
SSLCertificateChainFile: wildcard-2022.fedoraproject.org.intermediate.cert
|
SSLCertificateChainFile: wildcard-2023.fedoraproject.org.intermediate.cert
|
||||||
gzip: false
|
gzip: false
|
||||||
stssubdomains: true
|
stssubdomains: true
|
||||||
# set to true to enable the proxy to redirect the http01 challenge
|
# set to true to enable the proxy to redirect the http01 challenge
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue