Saltstack Official PHP Formula
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

mod_php.conf.jinja 467B

1234567891011121314
  1. {% from "php/ng/map.jinja" import php with context %}
  2. {% from "php/ng/map.jinja" import phpng_version with context %}
  3. {% set major = phpng_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>