mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 12:07:34 +08:00
16 lines
251 B
YAML
16 lines
251 B
YAML
---
|
|
# install mod_wsgi
|
|
- name: install mod_wsgi
|
|
yum: name=mod_wsgi state=present
|
|
tags:
|
|
- packages
|
|
|
|
- name: wsgi.conf
|
|
copy: src="{{ files }}/mod_wsgi/wsgi.conf" dest=/etc/httpd/conf.d/wsgi.conf
|
|
notify:
|
|
- restart apache
|
|
tags:
|
|
- config
|
|
|
|
|