I'm running an application on mongrel with apache 2.2.3. SSL works fine when I enter an https manually. But when I use the plugin, I get an endless redirect.
Got the same error when I tried running the following simplified version of SslRequirement from within an action:
unless request.ssl? redirect_to "https://#{request.host}/#{request.uri}" end
So there must be a problem with the ssl? method.
I've googled around, but haven't found out exactly how to solve the problem.
Anyone have a solution?
kb