Error Logging In - "user token not found"

Tried what you suggested… Definitely not processing cookies correctly. I see this:

  1. Request URL: https://mysystem.mysite.com/login

  2. Request Method: POST

  3. Status Code: 200 OK

  4. Remote Address: 1.2.3.4:443

  5. Referrer Policy: no-referrer-when-downgrade

  6. Response Headers

  7. Connection: keep-alive

  8. Content-Length 23

  9. Content-Type: application/json

  10. Date: Mon, 25 Mar 2019 16:13:17 GMT

  11. Server: nginx

  12. 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