diff options
author | Gabriel Mazetto <gabriel@gitlab.com> | 2016-05-30 18:13:42 -0300 |
---|---|---|
committer | Gabriel Mazetto <gabriel@gitlab.com> | 2016-08-04 18:55:37 +0200 |
commit | 926cee002d701548b5344e0b93e95beb3802fd54 (patch) | |
tree | 41530bd8f003cca902724a48f8a3b10eb2a91303 /doc/install | |
parent | 96abb19206c6910c8c25f1db77c663baff023d35 (diff) | |
download | gitlab-ce-926cee002d701548b5344e0b93e95beb3802fd54.tar.gz |
Deduplicated resque.yml loading from several places
We will trust redis configuration params loading to Gitlab::RedisConfig.
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 |