Update changelog
[manu/suphp.git] / debian / conf / suphp.conf
1 <IfModule mod_suphp.c>
2     <FilesMatch "\.ph(p3?|tml)$">
3         SetHandler application/x-httpd-suphp
4     </FilesMatch>
5         suPHP_AddHandler application/x-httpd-suphp
6
7     <Directory />
8         suPHP_Engine on
9     </Directory>
10
11     # By default, disable suPHP for debian packaged web applications as files
12     # are owned by root and cannot be executed by suPHP because of min_uid.
13     <Directory /usr/share>
14         suPHP_Engine off
15     </Directory>
16
17 # # Use a specific php config file (a dir which contains a php.ini file)
18 #       suPHP_ConfigPath /etc/php5/cgi/suphp/
19 # # Tells mod_suphp NOT to handle requests with the type <mime-type>.
20 #       suPHP_RemoveHandler <mime-type>
21 </IfModule>