blob: 0623760753af638dfa0e9456a390c3aec4531829 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#
# 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>
|