From f8f23afcb33edbe324f2c9a476ac1fabc64c09b1 Mon Sep 17 00:00:00 2001 From: lapineige Date: Wed, 4 Jul 2018 15:22:03 +0000 Subject: [PATCH 1/2] Instructions in Readme: How to use non SSOwat users This solve a common issue. See for instance: https://github.com/YunoHost-Apps/kanboard_ynh/issues/68 --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index ce7cdd4..300d87f 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,16 @@ Kanboard and SSOwat Kanboard use SSOwat for user authentification (it means it use the user that the web server (nginx) sent him throught SSOwat), but can't list all user of the system. If you wish to add a user, just log in with that user into Kanboard so the software knows him and displays it. +How to connect as external (non-SSOwat) users +------------------- +You have to edit this file `/var/www/kanboard/config.php`, find the line `define('REVERSE_PROXY_AUTH', true);` and change it from `true` to `false`. +**Warning** this disable the possibility to connect with SSOwat users. You will *only* be able to connect with Kanboard users created inside of Kanboard. +Then you can connect. + +**NB**: if you don't make that change, you will get the following error message "Access Forbidden". + +This is due to a Kanboard limitation. + Developer infos ---------------- From a7aee9d2e4fed36e8c1d0e832a377c2415d27f9f Mon Sep 17 00:00:00 2001 From: JimboJoe Date: Thu, 5 Jul 2018 19:14:58 +0200 Subject: [PATCH 2/2] Typo fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 300d87f..724dd5f 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ If you wish to add a user, just log in with that user into Kanboard so the softw How to connect as external (non-SSOwat) users ------------------- You have to edit this file `/var/www/kanboard/config.php`, find the line `define('REVERSE_PROXY_AUTH', true);` and change it from `true` to `false`. -**Warning** this disable the possibility to connect with SSOwat users. You will *only* be able to connect with Kanboard users created inside of Kanboard. +**Warning** this disables the possibility to connect with SSOwat users. You will *only* be able to connect with Kanboard users created inside of Kanboard. Then you can connect. **NB**: if you don't make that change, you will get the following error message "Access Forbidden".