-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Passing ssl_params in session_store not working #45
Comments
How about the code below? Rails.application.config.session_store :redis_store,
servers: {
url: ENV['REDIS_URL'],
ssl_params: { verify_mode: OpenSSL::SSL::VERIFY_NONE }
}
expire_after: 1.day |
I came to this repo to propose a change in the I think the documentation could be clearer in stating the possibilities for the What I did is very similar to what DaichiSaito proposes. redis_config = Rails.application.config_for(:redis)
Rails.application.config.session_store :redis_store,
servers: [redis_config],
expire_after: 30.days,
key: '_app_session' which has the benefit of reusing the redis config found in my Maybe the Do you guys agree with this change? Should I create a PR? |
I have an app in Heroku, I'm trying to do the code below, but seems
ssl_params
not passing... because I still get theOpenSSL::SSL::SSLError (SSL_connect returned=1 errno=0 peeraddr=52.214.49.109:23399 state=error: certificate verify failed (self-signed certificate in certificate chain))
Any advice?
PS: If I use the cookie_store (default for session_store) it works without a problem so the problem is using Redis with session_store.
The text was updated successfully, but these errors were encountered: