configuring ssl for qadevel-stg.qa

This commit is contained in:
Tim Flink 2015-05-13 18:48:27 +00:00
parent 16080eb2c3
commit 0d2a152834
2 changed files with 12 additions and 0 deletions

View file

@ -22,9 +22,13 @@ virt_install_command: /usr/bin/virt-install -n {{ inventory_hostname }} -r {{ me
sshd_config: ssh/sshd_config.qadevel
external_hostname: qadevel-stg.qa.fedoraproject.org
sslcertfile: qadevel-stg.qafedoraproject.org.cert
sslkeyfile: qadevel-stg.qa.fedoraproject.org.key
mariadb_host: localhost
mariadb_user: '{{ qadevel_stg_mariadb_user }}'
mariadb_password: '{{ qadevel_stg_mariadb_password }}'
phabricator_db_prefix: 'phabricatorstg'
enable_phabricator_git: False
phabricator_vcs_user: git

View file

@ -86,6 +86,14 @@
- name: start and enable phabricator phd service
service: name=phd enabled=yes state=started
- name: Install the SSL cert so that we can use https
copy: >
src={{ private}}/files/httpd/{{ item }} dest=/etc/pki/tls/certs/{{ item }}
owner=root group=root mode=0600
with_items:
- "{{ sslcertfile }}"
- "{{ sslkeyfile }}"
- name: copy phabricator httpd config
template: src=phabricator.conf.j2 dest=/etc/httpd/conf.d/phabricator.conf owner=root group=root mode=0644
notify: