Saltstack Official Apache Formula
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
328B

  1. {% from "apache/map.jinja" import apache with context %}
  2. LoadModule php5_module /usr/local/libexec/{{ apache.service }}/libphp5.so
  3. DirectoryIndex index.html index.php
  4. <FilesMatch "\.php$">
  5. SetHandler application/x-httpd-php
  6. </FilesMatch>
  7. <FilesMatch "\.phps$">
  8. SetHandler application/x-httpd-php-source
  9. </FilesMatch>