Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGabriel Mazetto <gabriel@gitlab.com>2016-05-31 00:13:42 +0300
committerGabriel Mazetto <gabriel@gitlab.com>2016-08-04 19:55:37 +0300
commit926cee002d701548b5344e0b93e95beb3802fd54 (patch)
tree41530bd8f003cca902724a48f8a3b10eb2a91303 /doc/install
parent96abb19206c6910c8c25f1db77c663baff023d35 (diff)
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.md6
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