Configuring single sign-on#
AEN’s single sign-on (SSO) capability creates a new authentication provider that defers to your Anaconda Repository for login and authentication cookies.
To enable SSO:
Deploy AEN and Repository on the same machine.
In the
/opt/wakari/wakari-server/etc/wakari/config.json
file, add:{ EXISTING_CONFIGURATION, "SECRET_KEY": "<repo signing secret>", "REPO_LOGIN_URL": "http://example_repo.com:8080/account/login?next=http://example_repo.com/" }
Copy the
SECRET_KEY
from the Repository configuration file.In the
/opt/wakari/wakari-server/etc/wakari/wk-server-config.json
file, modify:{ EXISTING_CONFIGURATION, "accounts": "wk_server.plugins.accounts.repo", }
If you are using Repository version 2.33.3 through 2.33.10, set
USE_SERVER_BASED_SESSIONS: false
in the Repository configuration.This setting affects the network security properties of AEN and Repository. Specifically, if
USE_SERVER_BASED_SESSIONS
is set tofalse
, and if a new cross-site scripting (XSS) vulnerability is discovered, it could expose an additional server fixation vulnerability. Please discuss this with your Anaconda representative and be sure the feature is compatible with your network requirements before settingUSE_SERVER_BASED_SESSIONS: false
.To activate the changes restart
wakari-server
:sudo service wakari-server restart
SSO is enabled.