I'm developing a web server using Play Framework v2.5. It will run in intranet and will use HTTP, not HTTPS.
When I start Play Server in Development Mode, it works.
But in Production Mode Play Server sets Secure flag to Session Cookie.
Since connection uses HTTP and not HTTPS browser doesn't send Session Cookie and users cannot login.
How can I disable this feature and avoid setting Secure to Cookies in Play Production Mode?
override lazy val tokenAccessorin yourAuthConfigImpl- Oleg Rudenko