diff options
author | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2013-10-15 05:44:06 -0700 |
---|---|---|
committer | Jacob Vosmaer <contact@jacobvosmaer.nl> | 2013-10-15 05:44:06 -0700 |
commit | a8eb525e72f6883a07539af9429ccd41dbc8698b (patch) | |
tree | 5d6dbe481ad94fdaf0d0c2934214eda81d06c5d8 | |
parent | 17df09b79ee10ef9c1fdeb8593337745768ef6f9 (diff) | |
parent | 1e65fdf7033db240c3ce7ce29b483bf2c392170c (diff) | |
download | gitlab-ce-a8eb525e72f6883a07539af9429ccd41dbc8698b.tar.gz |
Merge pull request #5168 from DirkR/master
Added description for Redis connection via unix socket
-rw-r--r-- | doc/install/installation.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/install/installation.md b/doc/install/installation.md index 7c6a2db9734..3a3b02849f1 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -344,6 +344,12 @@ a different host, you can configure its connection string via the # example production: 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 + ## Custom SSH Connection If you are running SSH on a non-standard port, you must change the gitlab user's SSH config. |