forked from extern/egroupware
documented required rewrite rule for Apache FCGI
This commit is contained in:
parent
a0cedae8b3
commit
428e71daad
@ -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!
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user