From 57a1abafdbb62fce147f02f59e76f20ed07f5bfd Mon Sep 17 00:00:00 2001 From: "yuuji.yaginuma" Date: Sat, 23 Jan 2016 15:01:32 +0900 Subject: fix path of Action Cable configuration file [ci skip] This changed in #22950. --- actioncable/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actioncable/README.md') diff --git a/actioncable/README.md b/actioncable/README.md index 74c88d1efe..63e328321b 100644 --- a/actioncable/README.md +++ b/actioncable/README.md @@ -302,7 +302,7 @@ Action Cable has three required configurations: the Redis connection, allowed re ### Redis -By default, `ActionCable::Server::Base` will look for a configuration file in `Rails.root.join('config/redis/cable.yml')`. +By default, `ActionCable::Server::Base` will look for a configuration file in `Rails.root.join('config/cable.yml')`. This file must specify a Redis url for each Rails environment. It may use the following format: ```yaml @@ -316,7 +316,7 @@ test: *development You can also change the location of the Redis config file in a Rails initializer with something like: ```ruby -Rails.application.paths.add "config/redis/cable", with: "somewhere/else/cable.yml" +Rails.application.paths.add "config/cable", with: "somewhere/else/cable.yml" ``` ### Allowed Request Origins -- cgit v1.2.3