Tried what you suggested… Definitely not processing cookies correctly. I see this:
-
Request URL: https://mysystem.mysite.com/login
-
Request Method: POST
-
Status Code: 200 OK
-
Remote Address: 1.2.3.4:443
-
Referrer Policy: no-referrer-when-downgrade
-
Response Headers
-
Connection: keep-alive
-
Content-Length 23
-
Content-Type: application/json
-
Date: Mon, 25 Mar 2019 16:13:17 GMT
-
Server: nginx
-
Strict-Transport-Security: max-age=15768000
We are front-ending grafana with nginx. The nginx config redirects from port 443 to community.grafana.com
In the grafana.ini file, I have not modified the root_url. It is set to be:
;root_url = %(protocol)s://%(domain)s:%(http_port)s/
We are upgrading from version 5.4.3. I left the 5.4.3 config file more or less untouched from what we were using. I added an [auth] section that looks like:
[auth]
login_maximum_inactive_lifetime_days = 1
login_maximum_lifetime_days = 1
login_cookie_name = grafana_sess_DEV
We had defined
cookie_name = grafana_sess_DEV
in the [session] section and I left that there.
We have cookie_secure = false (default) so I did not add that to the security section.
I just rebuilt my system using grafana 6.0.2-1
I’m guessing I’m missing something in the config file - but I’m not sure what that would be…
Thanks
nbc