Added workaround in documentation for API and Apache+php-fpm

This commit is contained in:
Frederic Guillot 2016-04-26 23:01:50 -04:00
parent 1936a74cb3
commit 5fe413ad28
1 changed files with 12 additions and 0 deletions

View File

@ -49,6 +49,18 @@ php_value arg_separator.output "&"
Otherwise Kanboard will try to override the value directly in PHP.
Authentication failure with the API and Apache + PHP-FPM
--------------------------------------------------------
php-cgi under Apache does not pass HTTP Basic user/pass to PHP by default.
For this workaround to work, add these lines to your `.htaccess` file:
```
RewriteCond %{HTTP:Authorization} ^(.+)$
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
```
Known issues with eAccelerator
------------------------------