Is there a way to make user logins to work whether you're connecting over HTTP or HTTPS on the same instance?
I know that to get user logins to work without https, you have to add this to /etc/lava-server/settings.conf:
"CSRF_COOKIE_SECURE": false, "SESSION_COOKIE_SECURE": false,
But it would be nice if user logins would also work over https at the same time.
The use case for this is an internal LAVA instance that doesn't have https so internal connections are all over http. The same instance is also available to the outside world via an nginx reverse proxy with TLS termination, so connections from outside are over https.
Can it be made to work for both internal (http) and external (https) connections?
Thanks,
Kevin