Commit a47f7767 authored by Jacob Vosmaer's avatar Jacob Vosmaer Committed by Dmitriy Zaporozhets

Connect to Redis via sockets by default

parent 4f3f3bee
...@@ -4,6 +4,7 @@ v2.0.0 ...@@ -4,6 +4,7 @@ v2.0.0
- Handle invalid number of arguments on remote commands - Handle invalid number of arguments on remote commands
- Replace update hook with pre-receive and post-receive hooks. - Replace update hook with pre-receive and post-receive hooks.
- Ignore missing repositories in create-hooks - Ignore missing repositories in create-hooks
- Connect to Redis via sockets by default
v1.9.7 v1.9.7
- Increased test coverage - Increased test coverage
......
...@@ -27,11 +27,11 @@ auth_file: "/home/git/.ssh/authorized_keys" ...@@ -27,11 +27,11 @@ auth_file: "/home/git/.ssh/authorized_keys"
# Redis settings used for pushing commit notices to gitlab # Redis settings used for pushing commit notices to gitlab
redis: redis:
bin: /usr/bin/redis-cli bin: /usr/bin/redis-cli
host: 127.0.0.1 # host: 127.0.0.1
port: 6379 # port: 6379
# pass: redispass # Allows you to specify the password for Redis # 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 database: 0
socket: /var/run/redis/redis.sock # Comment out this line if you want to use TCP
namespace: resque:gitlab namespace: resque:gitlab
# Log file. # Log file.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment