odyssey/odissey.conf

49 lines
651 B
Plaintext
Raw Normal View History

2016-11-07 13:25:12 +00:00
# odissey config file.
#
#
odissey {
daemonize no
# log_file "./odissey.log"
# pid_file ""
pooling "session" # transaction, statement
listen {
host "127.0.0.1"
port 6432
# tls_sslmode disable
# tls_ca_file
# tls_key_file
# tls_cert_file
# tls_protocols all
# tls_ciphers fast
client_max 100
workers 8
}
2016-11-07 14:19:12 +00:00
server "default" {
host "127.0.0.1"
2016-11-11 11:52:23 +00:00
port 5432
# tls_sslmode disable
# tls_ca_file
# tls_key_file
# tls_cert_file
# tls_protocol all
# tls_ciphers fast
}
routing {
mode "forward" # round-robin
2016-11-11 10:27:31 +00:00
default {
2016-11-07 14:19:12 +00:00
route "default"
pool_min 0
pool_max 100
client_max 100
# force user, db, limits
}
}
}