Browse Source

Clear uncomment state of mod_wsgi config

tags/v0.37.4
Oleksandr Porunov 7 years ago
parent
commit
7ac28f42f9
3 changed files with 6 additions and 4 deletions
  1. +1
    -0
      apache/map.jinja
  2. +4
    -4
      apache/mod_wsgi.sls
  3. +1
    -0
      apache/osfingermap.yaml

+ 1
- 0
apache/map.jinja View File

@@ -54,6 +54,7 @@
'configfile': '/etc/httpd/conf/httpd.conf',

'mod_wsgi': 'mod_wsgi',
'conf_mod_wsgi': '/etc/httpd/conf.d/wsgi.conf',
'mod_php5': 'php',
'mod_pagespeed_source': 'https://dl-ssl.google.com/dl/linux/direct/mod-pagespeed-stable_current_x86_64.rpm',


+ 4
- 4
apache/mod_wsgi.sls View File

@@ -9,11 +9,11 @@ mod_wsgi:
- require:
- pkg: apache

{% if grains.get('os_family') == 'RedHat' %}
/etc/httpd/conf.d/wsgi.conf:
{% if apache.conf_mod_wsgi %}
{{ apache.conf_mod_wsgi }}:
file.uncomment:
- regex: LoadModule
- onlyif: test -f /etc/httpd/conf.d/wsgi.conf
- onlyif: test -f {{ apache.conf_mod_wsgi }}
- require:
- pkg: mod_wsgi
{% endif %}
{% endif %}

+ 1
- 0
apache/osfingermap.yaml View File

@@ -10,6 +10,7 @@ CentOS Linux-6:
version: '2.2'
CentOS Linux-7:
version: '2.4'
conf_mod_wsgi: '/etc/httpd/conf.modules.d/10-wsgi.conf'
Oracle Linux Server-6:
version: '2.2'
Oracle Linux Server-7:

Loading…
Cancel
Save