2014-12-08 14:51:28 +00:00
|
|
|
- name: Set up those proxy certificates. Good gravy..
|
2019-05-20 18:14:08 +00:00
|
|
|
hosts: proxies_stg:proxies
|
2014-12-08 14:51:28 +00:00
|
|
|
user: root
|
|
|
|
gather_facts: True
|
|
|
|
|
|
|
|
vars_files:
|
|
|
|
- /srv/web/infra/ansible/vars/global.yml
|
2015-01-09 22:59:18 +00:00
|
|
|
- "/srv/private/ansible/vars.yml"
|
2014-12-08 14:51:28 +00:00
|
|
|
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
|
|
|
|
|
|
|
|
handlers:
|
2017-10-16 21:58:36 +00:00
|
|
|
- import_tasks: "{{ handlers_path }}/restart_services.yml"
|
2014-12-08 14:51:28 +00:00
|
|
|
|
|
|
|
roles:
|
|
|
|
|
|
|
|
- role: httpd/mod_ssl
|
2016-08-08 19:36:31 +00:00
|
|
|
|
2014-12-08 14:51:28 +00:00
|
|
|
- role: httpd/certificate
|
2018-04-05 20:48:29 +00:00
|
|
|
certname: wildcard-2017.fedoraproject.org
|
2017-02-01 23:39:23 +00:00
|
|
|
SSLCertificateChainFile: wildcard-2017.fedoraproject.org.intermediate.cert
|
2014-12-08 14:51:28 +00:00
|
|
|
|
2016-05-18 20:17:43 +00:00
|
|
|
- role: httpd/certificate
|
2018-04-05 20:48:29 +00:00
|
|
|
certname: wildcard-2017.fedorahosted.org
|
2017-02-02 21:59:26 +00:00
|
|
|
SSLCertificateChainFile: wildcard-2017.fedorahosted.org.intermediate.cert
|
2016-05-18 20:17:43 +00:00
|
|
|
|
2014-12-08 14:51:28 +00:00
|
|
|
- role: httpd/certificate
|
2018-04-05 20:48:29 +00:00
|
|
|
certname: wildcard-2017.id.fedoraproject.org
|
2017-02-01 23:39:23 +00:00
|
|
|
SSLCertificateChainFile: wildcard-2017.id.fedoraproject.org.intermediate.cert
|
2014-12-08 14:51:28 +00:00
|
|
|
|
|
|
|
- role: httpd/certificate
|
2018-04-05 20:48:29 +00:00
|
|
|
certname: wildcard-2017.stg.fedoraproject.org
|
2017-02-01 23:39:23 +00:00
|
|
|
SSLCertificateChainFile: wildcard-2017.stg.fedoraproject.org.intermediate.cert
|
2017-06-12 19:05:55 +00:00
|
|
|
when: env == "staging"
|
|
|
|
|
|
|
|
- role: httpd/certificate
|
2018-04-05 20:48:29 +00:00
|
|
|
certname: wildcard-2017.app.os.stg.fedoraproject.org
|
2017-06-12 19:05:55 +00:00
|
|
|
SSLCertificateChainFile: wildcard-2017.app.os.stg.fedoraproject.org.intermediate.cert
|
|
|
|
when: env == "staging"
|
2017-08-23 22:42:11 +00:00
|
|
|
tags:
|
|
|
|
- app.os.fedoraproject.org
|
2014-12-08 14:51:28 +00:00
|
|
|
|
2017-08-22 19:58:32 +00:00
|
|
|
- role: httpd/certificate
|
2018-04-05 20:48:29 +00:00
|
|
|
certname: wildcard-2017.app.os.fedoraproject.org
|
2017-08-22 19:58:32 +00:00
|
|
|
SSLCertificateChainFile: wildcard-2017.app.os.fedoraproject.org.intermediate.cert
|
2017-08-23 22:42:11 +00:00
|
|
|
tags:
|
|
|
|
- app.os.fedoraproject.org
|
2017-08-22 19:58:32 +00:00
|
|
|
|
2014-12-08 14:51:28 +00:00
|
|
|
- role: httpd/certificate
|
2018-04-05 20:48:29 +00:00
|
|
|
certname: fedoramagazine.org
|
2014-12-08 14:51:28 +00:00
|
|
|
SSLCertificateChainFile: fedoramagazine.org.intermediate.cert
|
|
|
|
|
2017-11-25 00:07:42 +00:00
|
|
|
- role: httpd/certificate
|
2018-04-05 20:48:29 +00:00
|
|
|
certname: getfedora.org
|
2014-12-08 14:51:28 +00:00
|
|
|
SSLCertificateChainFile: getfedora.org.intermediate.cert
|
2016-01-21 21:38:23 +00:00
|
|
|
|
|
|
|
- role: httpd/certificate
|
2018-04-05 20:48:29 +00:00
|
|
|
certname: flocktofedora.org
|
2016-01-21 21:38:23 +00:00
|
|
|
SSLCertificateChainFile: flocktofedora.org.intermediate.cert
|
2016-02-02 14:04:04 +00:00
|
|
|
|
|
|
|
- role: httpd/certificate
|
2018-04-05 20:48:29 +00:00
|
|
|
certname: qa.stg.fedoraproject.org
|
2016-02-12 07:46:06 +00:00
|
|
|
SSLCertificateChainFile: qa.stg.fedoraproject.org.intermediate.cert
|
2016-02-14 16:46:43 +00:00
|
|
|
when: env == "staging"
|
2016-04-14 03:08:10 +00:00
|
|
|
|
|
|
|
- role: httpd/certificate
|
2018-04-05 20:48:29 +00:00
|
|
|
certname: qa.fedoraproject.org
|
2016-04-14 03:08:10 +00:00
|
|
|
SSLCertificateChainFile: qa.fedoraproject.org.intermediate.cert
|
2016-12-14 23:57:52 +00:00
|
|
|
|
|
|
|
- role: httpd/certificate
|
2018-04-05 20:48:29 +00:00
|
|
|
certname: secondary.koji.fedoraproject.org.letsencrypt
|
2016-12-15 00:02:13 +00:00
|
|
|
SSLCertificateChainFile: secondary.koji.fedoraproject.org.letsencrypt.intermediate.crt
|
2017-10-12 22:19:23 +00:00
|
|
|
|
2017-11-16 02:00:19 +00:00
|
|
|
- role: httpd/certificate
|
2018-04-05 20:48:29 +00:00
|
|
|
certname: fedoracommunity.org
|
2017-11-16 04:23:07 +00:00
|
|
|
SSLCertificateChainFile: fedoracommunity.org.intermediate.cert
|
2017-11-16 02:00:19 +00:00
|
|
|
tags:
|
|
|
|
- fedoracommunity.org
|