Saltstack Official Apache Formula
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

mod_wsgi.sls 341B

123456789101112131415161718
  1. {% from "apache/map.jinja" import apache with context %}
  2. include:
  3. - apache
  4. mod_wsgi:
  5. pkg.installed:
  6. - name: {{ apache.mod_wsgi }}
  7. - require:
  8. - pkg: apache
  9. {% if grains.get('os_family') == 'RedHat' %}
  10. /etc/httpd/conf.d/wsgi.conf:
  11. file.uncomment:
  12. - regex: LoadModule
  13. - require:
  14. - pkg: mod_wsgi
  15. {% endif %}