OSDN Git Service

Add docs for customizing Redis, add example file
authorRobert Speicher <rspeicher@gmail.com>
Wed, 19 Sep 2012 01:53:27 +0000 (21:53 -0400)
committerRobert Speicher <rspeicher@gmail.com>
Wed, 19 Sep 2012 01:53:27 +0000 (21:53 -0400)
config/resque.yml.example [new file with mode: 0644]
doc/installation.md

diff --git a/config/resque.yml.example b/config/resque.yml.example
new file mode 100644 (file)
index 0000000..cd3d487
--- /dev/null
@@ -0,0 +1,3 @@
+development: localhost:6379
+test: localhost:6379
+production: redis.example.com:6379
index 345d801..865cde3 100644 (file)
@@ -251,6 +251,14 @@ You can login via web using admin generated with setup:
     # if you run this as root /home/gitlab/gitlab/tmp/pids/resque_worker.pid will be owned by root
     # causing the resque worker not to start via init script on next boot/service restart
 
+## Customizing Resque's Redis connection
+
+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 in the
+**config/resque.yml** file:
+
+    production: redis.example.com:6379
+
 **Ok - we have a working application now. **
 **But keep going - there are some things that should be done **
 
@@ -276,7 +284,6 @@ You can login via web using admin generated with setup:
     # of the host serving GitLab.
     sudo vim /etc/nginx/sites-enabled/gitlab
 
-
     # Restart nginx:
     /etc/init.d/nginx restart