Skip to content

Instantly share code, notes, and snippets.

@seanhandley
Created February 15, 2017 11:19
Show Gist options
  • Save seanhandley/7b2f9bcbec81bed7bb159e1d6652fc95 to your computer and use it in GitHub Desktop.
Save seanhandley/7b2f9bcbec81bed7bb159e1d6652fc95 to your computer and use it in GitHub Desktop.
Using Redis Auth with ActionCable
default: &default
adapter: redis
url: redis://localhost:6379/1
development:
<<: *default
test:
<<: *default
staging:
<<: *default
production:
<<: *default
url: redis://prodserver.com:6379/1
network_timeout: 5
password: <%= ENV['REDIS_PASSWORD'] %>
@evmorov
Copy link

evmorov commented Sep 8, 2017

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment