make log level and log file location of the DRb server configurable (#162)
[acts_as_ferret.git] / config / ferret_server.yml
blob53a89dc60fb9434bf69ba3c70f2e1122ff8b5a3f
1 # configuration for the acts_as_ferret DRb server
2 # host: where to reach the DRb server (used by application processes to contact the server)
3 # port: which port the server should listen on
4 # pid_file: location of the server's pid file (relative to RAILS_ROOT)
5 # log_file: log file (default: RAILS_ROOT/log/ferret_server.log
6 # log_level: log level for the server's logger
7 production:
8   host: localhost
9   port: 9010
10   pid_file: log/ferret.pid
11   log_file: log/ferret_server.log
12   log_level: warn
14 # aaf won't try to use the DRb server in environments that are not 
15 # configured here.
16 #development:
17 #  host: localhost
18 #  port: 9010
19 #  pid_file: log/ferret.pid
20 #test:
21 #  host: localhost
22 #  port: 9009
23 #  pid_file: log/ferret.pid