diff options
Diffstat (limited to 'doc/install')
-rw-r--r-- | doc/install/installation.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md index af8e31a705b..3e77880eca0 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -591,12 +591,14 @@ for the changes to take effect. If you'd like Resque to connect to a Redis server on a non-standard port or on a different host, you can configure its connection string via the `config/resque.yml` file. # example - production: redis://redis.example.tld:6379 + production: + url: redis://redis.example.tld:6379 If you want to connect the Redis server via socket, then use the "unix:" URL scheme and the path to the Redis socket file in the `config/resque.yml` file. # example - production: unix:/path/to/redis/socket + production: + url: unix:/path/to/redis/socket ### Custom SSH Connection |