configuring ssl for qadevel-stg.qa
This commit is contained in:
parent
16080eb2c3
commit
0d2a152834
2 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue