mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-04 20:29:09 +01:00
4c6a6ad71c
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
15 lines
354 B
Text
15 lines
354 B
Text
#
|
|
# mod_fcgid - FastCGI interface module for Apache 2
|
|
#
|
|
|
|
# Load the PHP module:
|
|
LoadModule fcgid_module @baselibdir@/httpd/modules/mod_fcgid.so
|
|
|
|
# Tell Apache to feed all *.php files through PHP.
|
|
<IfModule fcgid_module>
|
|
<Location />
|
|
AddHandler fcgid-script .php
|
|
Options +ExecCGI
|
|
FcgidWrapper /usr/bin/php-cgi .php
|
|
</Location>
|
|
</IfModule>
|