documented required rewrite rule for Apache FCGI

This commit is contained in:
Ralf Becker 2013-03-18 08:14:47 +00:00
parent a0cedae8b3
commit 428e71daad
4 changed files with 26 additions and 0 deletions

View File

@ -26,3 +26,8 @@ php_value session.gc_probability 1
php_value session.gc_divisor 10
# multibyte extension: needed for utf-8
php_value mbstring.func_overload 7
#
#For Apache FCGI (not regular mod_php!) you need the following rewrite rule:
#RewriteEngine on
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#Otherwise authentication request will be send over and over again, as password is NOT available to PHP!

View File

@ -2,6 +2,13 @@
/**
* EGroupware - CalDAV/CardDAV/GroupDAV server
*
* For Apache FCGI you need the following rewrite rule:
*
* RewriteEngine on
* RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
*
* Otherwise authentication request will be send over and over again, as password is NOT available to PHP!
*
* Using the PEAR HTTP/WebDAV/Server class (which need to be installed!)
*
* @link http://www.egroupware.org

View File

@ -2,6 +2,13 @@
/**
* eGroupWare API: Basic and Digest Auth
*
* For Apache FCGI you need the following rewrite rule:
*
* RewriteEngine on
* RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
*
* Otherwise authentication request will be send over and over again, as password is NOT available to PHP!
*
* @link http://www.egroupware.org
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package api

View File

@ -2,6 +2,13 @@
/**
* FileManger - WebDAV access
*
* For Apache FCGI you need the following rewrite rule:
*
* RewriteEngine on
* RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
*
* Otherwise authentication request will be send over and over again, as password is NOT available to PHP!
*
* Using the PEAR HTTP/WebDAV/Server class (which need to be installed!)
*
* @link http://www.egroupware.org