Closed cudeso closed 5 years ago
Hello, I suspect that your dashboard is not properly configured to use SSL. For the default configuration, cookie cannot be saved on non-secure website. If my suspicion is correct, you have two choices:
config.cfg
. Set session_cookie_secure
to false
[Auth]
session_cookie_secure = False
Indeed, setting session_cookie_secure = False
was one way of fixing it.
I fixed the Flask server (via server.py) config also to support SSL via self-signed certificate. Requires a dependency (pyOpenSSL) and app.run(ssl_context='adhoc', host=server_host,
.
Hey, that seems great! Could you submit a PR? :)
Running dashboard on a hosts which was able to run the previous versions of the dashboard. Setting authentication to False. Always getting "Too many redirects. This can be due to your brower not accepting cookies or the misp-dashboard website is badly configured".
No errors in Flask, despite Debug is enabled.