So I've spun up self-hosted sentry on my computer.
When i go to localhost:9000, i can sign in just fine to sentry
But when i go to my ip address sentry (192.168.1.120:9000), I can't sign in. Always get this error despite typing the exact same credentials. Even though I can sign in just fine on localhost:9000. Do they not share the same accounts? What to do?
CSRF Validation Failed
A required security token was not found or was invalid.
Why are you encountering a CSRF error after login?
See explanation from Django docs.
Read more about CSRF on Wikipedia.
If you're continually seeing this issue, try the following steps:
Close other tabs with Sentry loaded.
Clear cookies (at least for Sentry's domain).
Reload the page you're trying to submit (don't re-submit data).
Re-enter the information, and submit the form again.
Ensure the URL does not contain an extra "/" anywhere (eg: https://foo//saml -> https://foo/saml).