diff options
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | config.yml.example | 6 |
2 files changed, 4 insertions, 3 deletions
@@ -4,6 +4,7 @@ v2.0.0 - Handle invalid number of arguments on remote commands - Replace update hook with pre-receive and post-receive hooks. - Ignore missing repositories in create-hooks + - Connect to Redis via sockets by default v1.9.7 - Increased test coverage diff --git a/config.yml.example b/config.yml.example index c9c5b41..94eb593 100644 --- a/config.yml.example +++ b/config.yml.example @@ -27,11 +27,11 @@ auth_file: "/home/git/.ssh/authorized_keys" # Redis settings used for pushing commit notices to gitlab redis: bin: /usr/bin/redis-cli - host: 127.0.0.1 - port: 6379 + # host: 127.0.0.1 + # port: 6379 # pass: redispass # Allows you to specify the password for Redis - # socket: /tmp/redis.socket # Only define this if you want to use sockets database: 0 + socket: /var/run/redis/redis.sock # Comment out this line if you want to use TCP namespace: resque:gitlab # Log file. |