Fix ssl for staging.

This commit is contained in:
Kevin Fenzi 2014-06-03 16:18:27 +00:00
parent 2f0b27b806
commit 7433201bb6
2 changed files with 10 additions and 5 deletions

View file

@ -109,14 +109,14 @@ SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW
# the certificate is encrypted, then you will be prompted for a
# pass phrase. Note that a kill -HUP will prompt again. A new
# certificate can be generated using the genkey(1) command.
SSLCertificateFile /etc/pki/tls/certs/koji_cert.pem
SSLCertificateFile /etc/pki/tls/certs/koji.stg_cert.pem
# Server Private Key:
# If the key is not combined with the certificate, use this
# directive to point at the key file. Keep in mind that if
# you've both a RSA and a DSA private key you can configure
# both in parallel (to also allow the use of DSA ciphers, etc.)
SSLCertificateKeyFile /etc/pki/tls/private/koji_key.pem
SSLCertificateKeyFile /etc/pki/tls/private/koji.stg_key.pem
# Server Certificate Chain:
# Point SSLCertificateChainFile at a file containing the

View file

@ -60,13 +60,18 @@
- mash.conf
- rel-eng.conf
- repo.conf
- kojira.conf
tags:
- config
notify: restart httpd
- name: koji ssl config
copy: src=koji-ssl.conf dest=/etc/httpd/conf.d/ssl.conf
- name: koji staging ssl config
copy: src=koji-ssl.conf.stg dest=/etc/httpd/conf.d/ssl.conf
tags:
- config
when: env == "staging"
- name: kojira config
copy: src=kojira.conf dest=/etc/kojira/kojira.conf
tags:
- config