apache-formula/apache/files/FreeBSD/mod_cgi.conf.jinja

9 lines
271 B
Plaintext
Raw Normal View History

2017-01-16 14:02:23 +01:00
{% from "apache/map.jinja" import apache with context %}
<IfModule !mpm_prefork_module>
LoadModule cgid_module libexec/{{ apache.service }}/mod_cgid.so
</IfModule>
<IfModule mpm_prefork_module>
LoadModule cgi_module libexec/{{ apache.service }}/mod_cgi.so
</IfModule>