mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-28 10:53:39 +01:00
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
|
php_value session.gc_divisor 10
|
||||||
# multibyte extension: needed for utf-8
|
# multibyte extension: needed for utf-8
|
||||||
php_value mbstring.func_overload 7
|
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
|
* 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!)
|
* Using the PEAR HTTP/WebDAV/Server class (which need to be installed!)
|
||||||
*
|
*
|
||||||
* @link http://www.egroupware.org
|
* @link http://www.egroupware.org
|
||||||
|
@ -2,6 +2,13 @@
|
|||||||
/**
|
/**
|
||||||
* eGroupWare API: Basic and Digest Auth
|
* 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
|
* @link http://www.egroupware.org
|
||||||
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
||||||
* @package api
|
* @package api
|
||||||
|
@ -2,6 +2,13 @@
|
|||||||
/**
|
/**
|
||||||
* FileManger - WebDAV access
|
* 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!)
|
* Using the PEAR HTTP/WebDAV/Server class (which need to be installed!)
|
||||||
*
|
*
|
||||||
* @link http://www.egroupware.org
|
* @link http://www.egroupware.org
|
||||||
|
Loading…
Reference in New Issue
Block a user