15 lines
242 B
YAML
15 lines
242 B
YAML
---
|
|
# install mod_wsgi
|
|
- name: install mod_wsgi
|
|
package:
|
|
name: mod_wsgi
|
|
state: present
|
|
tags:
|
|
- packages
|
|
|
|
- name: wsgi.conf
|
|
copy: src="wsgi.conf" dest=/etc/httpd/conf.d/wsgi.conf
|
|
notify:
|
|
- restart apache
|
|
tags:
|
|
- config
|