apache-formula/apache/mod_wsgi.sls

19 lines
341 B
Plaintext
Raw Normal View History

{% from "apache/map.jinja" import apache with context %}
2013-08-13 16:51:38 -06:00
2013-08-26 20:45:57 -06:00
include:
- apache
2013-08-13 16:51:38 -06:00
mod_wsgi:
2014-09-25 11:48:36 -05:00
pkg.installed:
2013-08-26 20:45:38 -06:00
- name: {{ apache.mod_wsgi }}
2013-08-26 20:45:57 -06:00
- require:
- pkg: apache
2013-08-13 16:51:38 -06:00
{% if grains.get('os_family') == 'RedHat' %}
/etc/httpd/conf.d/wsgi.conf:
2014-09-25 11:48:36 -05:00
file.uncomment:
2013-08-13 16:51:38 -06:00
- regex: LoadModule
- require:
- pkg: mod_wsgi
{% endif %}