Saltstack Official PHP Formula
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

mod_php.conf.jinja 457B

1234567891011121314
  1. {% from "php/map.jinja" import php with context %}
  2. {% from "php/map.jinja" import php_version with context %}
  3. {% set major = php_version.split('.')|first %}
  4. LoadModule php{{ major }}_module /usr/local/libexec/{{ php.lookup.apache2.name }}/libphp{{ major }}.so
  5. DirectoryIndex index.html index.php
  6. <FilesMatch "\.php$">
  7. SetHandler application/x-httpd-php
  8. </FilesMatch>
  9. <FilesMatch "\.phps$">
  10. SetHandler application/x-httpd-php-source
  11. </FilesMatch>