diff options
Diffstat (limited to 'mod_suphp.conf')
-rw-r--r-- | mod_suphp.conf | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mod_suphp.conf b/mod_suphp.conf new file mode 100644 index 0000000..05bd971 --- /dev/null +++ b/mod_suphp.conf @@ -0,0 +1,24 @@ +# This is the Apache server configuration file providing suPHP support.. +# It contains the configuration directives to instruct the server how to +# serve php pages while switching to the user context before rendering. + +### Uncomment to activate mod_suphp +#suPHP_AddHandler ###HANDLER### + + +# This option tells mod_suphp if a PHP-script requested on this server (or +# VirtualHost) should be run with the PHP-interpreter or returned to the +# browser "as it is". +suPHP_Engine on + + +# This option tells mod_suphp which path to pass on to the PHP-interpreter +# (by setting the PHPRC environment variable). +# Do *NOT* refer to a file but to the directory the file resists in. +# +# E.g.: If you want to use "/path/to/server/config/php.ini", use "suPHP_Config +# /path/to/server/config". +# +# If you don't use this option, PHP will use its compiled in default path. +#suPHP_ConfigPath /etc + |