diff options
author | Remi Collet <fedora@famillecollet.com> | 2012-06-13 18:43:31 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2012-06-13 18:43:31 +0200 |
commit | 3eb5696b8ee245c48c11dd6aefbda531054a0eec (patch) | |
tree | cd7b7a8c909f6a2dd2d4978cf590032083d3b906 /README.fedora |
Diffstat (limited to 'README.fedora')
-rw-r--r-- | README.fedora | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/README.fedora b/README.fedora new file mode 100644 index 0000000..e193257 --- /dev/null +++ b/README.fedora @@ -0,0 +1,25 @@ +In order to activate mod_suphp support, /etc/httpd/conf.d/mod_suphp.conf +has to be edited. + +The commented line "suPHP_AddHandler ###HANDLER###" has to be uncommented, +for mod_suphp to work. + +After a restart of the httpd, php scripts should be executed with the +rights of the user owning them. + +In case you do need mod_php support for a certain virtual host or directory, +you can selectively disable mod_suphp and fall back to mod_php: + +<Directory "/var/www/html"> + suPHP_Engine off + suPHP_RemoveHandler .php + php_admin_flag engine on + php_admin_flag register_globals on +</Directory> + +This should do the trick nicely. The register_globals flag is purely optional +and should be avoided if possibly. + +Should you require mod_userdir support, in order to enable ~user URLs, you should set +check_vhost_docroot=false in the /etc/suphp.conf file, as currently suphp would fail +with an incorrect vhost. |