mirror of
https://github.com/YunoHost-Apps/couchdb_ynh.git
synced 2024-09-03 18:16:11 +02:00
Fixed incompatibility between SSO and couch authentication.
This commit is contained in:
parent
f25e701984
commit
77e387c4c4
3 changed files with 1 additions and 5 deletions
|
@ -53,8 +53,6 @@ Couchdb has it's own users management system, so LDAP is not supported.
|
|||
|
||||
By default this package installs couchdb as single node, if you need a different setup, please contribute with pull requests to improve the package :)
|
||||
|
||||
It seems that there are some conflicts between yunohost SSO cookies and couchdb authentication cookies, this results in users not being able to access couchdb if they are logged in the SSO. To avoid having this issue, it is recommended to install couchdb on a different domain than the main yunohost one.
|
||||
|
||||
|
||||
## Links
|
||||
|
||||
|
|
|
@ -50,8 +50,6 @@ Couchdb a sa propre gestion d'utilisateurs, donc LDAP n'est pas supporté.
|
|||
|
||||
Par défaut, ce paquet install couchdb comme nœud simple. Si vous souhaitez permettre des installations plus avancées les contributions sont bienvenues :)
|
||||
|
||||
Il semble qu'il y'ai un conflit entre le cookie du SSO yunohost et celui d'autentification à couchdb, dont le résultat est que couchdb n'est pas accessible pour les utilisateurs s'ils sont loggé dans le SSO. La façon la plus simple d'éviter ce problème est d'installer couchdb sur un domaine différent que le domaine principale de yunohost.
|
||||
|
||||
|
||||
## Liens
|
||||
|
||||
|
|
|
@ -147,7 +147,7 @@ ynh_add_fail2ban_config --logpath="/var/log/couchdb/couchdb.log" --failregex="[w
|
|||
ynh_script_progression --message="Configuring permissions..." --weight=3
|
||||
|
||||
# Setup that clicking SSO tile opens fauxton UI
|
||||
ynh_permission_url --permission="main" --url="/_utils/index.html" --add_url="/"
|
||||
ynh_permission_url --permission="main" --url="/_utils/index.html" --add_url="/" --auth_header=false
|
||||
|
||||
# Make app public if necessary
|
||||
if [ $is_public -eq 1 ]
|
||||
|
|
Loading…
Reference in a new issue