In a Rails app, the session cookie can be easily set to include the secure
cookie attribute, when sending over HTTPS to ensure that the cookie is not leaked over a non-HTTP connection.
However, if the Rails app is NOT using HTTPS, but HTTP only, it seems that it doesnt even set the cookie at all.
While this does make some sense, in this scenario there is a seperate front end load balancer, which is responsible for terminating the SSL connection. From the LB to the Rails app, the connection is HTTP only.
How can I force the Rails app to set a secure
cookie, even when not using HTTPS?