diff options
author | Matthew Draper <matthew@trebex.net> | 2016-02-25 12:44:02 +1030 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2016-02-25 12:44:02 +1030 |
commit | d81a9d79accb37a52cedc3e4049b50a2fcb7122e (patch) | |
tree | f89fbfcd6daca18e77cac98a56eeeadee791b53d /guides/source | |
parent | 8db771bb6977b83408317b6588967d288f5a44cc (diff) | |
parent | 1afd414488fe73c927242e072af0ff9ab21d2599 (diff) | |
download | rails-d81a9d79accb37a52cedc3e4049b50a2fcb7122e.tar.gz rails-d81a9d79accb37a52cedc3e4049b50a2fcb7122e.tar.bz2 rails-d81a9d79accb37a52cedc3e4049b50a2fcb7122e.zip |
Merge pull request #23488 from maclover7/actioncable-defaults
Enable ActionCable routes by default
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/configuring.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md index 23866b1800..3f522386d3 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -613,6 +613,17 @@ There are a few configuration options available in Active Support: * `config.active_job.logger` accepts a logger conforming to the interface of Log4r or the default Ruby Logger class, which is then used to log information from Active Job. You can retrieve this logger by calling `logger` on either an Active Job class or an Active Job instance. Set to `nil` to disable logging. +### Configuring Action Cable + +* `config.action_cable.url` accepts a string for the URL for where + you are hosting your Action Cable server. You would use this option +if you are running Action Cable servers that are separated from your +main application. +* `config.action_cable.mount_path` accepts a string for where to mount Action + Cable, as apart of the main server process. Defaults to `/cable`. +You can set this as nil to not mount Action Cable as apart of your +normal Rails server. + ### Configuring a Database Just about every Rails application will interact with a database. You can connect to the database by setting an environment variable `ENV['DATABASE_URL']` or by using a configuration file called `config/database.yml`. |