odyssey/odissey.conf

46 lines
635 B
Plaintext
Raw Normal View History

2016-11-07 13:25:12 +00:00
# odissey config file.
#
odissey {
2016-11-28 13:41:47 +00:00
# daemonize no
# log_file "./odissey.log"
# pid_file "./odissey.pid"
# syslog no
# syslog_facility "daemon"
# syslog_ident "odissey"
2016-12-06 13:27:41 +00:00
pooling "transaction" # transaction
listen {
host "localhost"
port 6432
2016-11-30 13:34:41 +00:00
nodelay yes
# backlog 16
2016-11-28 13:25:05 +00:00
# keepalive 7200
client_max 100
workers 8
}
2016-11-07 14:19:12 +00:00
server "default" {
host "localhost"
2016-11-11 11:52:23 +00:00
port 5432
}
routing {
2016-11-30 13:34:41 +00:00
mode "forward"
"test" {
2016-11-07 14:19:12 +00:00
route "default"
ttl 10
}
# default {
# route "default"
# user "user"
# database "database"
# pool_min 0
# pool_max 100
# client_max 100
2016-11-15 12:07:58 +00:00
# ttl 120
# }
}
}