Alternate Redis Location

If I wanted to set up a Redis server somewhere other than localhost, how can I configure this?
For example Redis could be located at 172.0.0.10 port 6379

Can you try adding a line like:

Resque.redis = '172.0.0.10:6379'

in config/environments/production.rb (if you are on production environment), and then restart Dradis.

Also check in that if other settings exist that need to be updated, like:
config.cache_store = :redis_store, 'redis://localhost:6379/1/cache'

Dradis is using resque, which in turn uses redis. More on resque configuration:

1 Like

Thanks, exactly what I was looking for. Works fine with the added resque line.