odyssey/odissey.conf

89 lines
1.4 KiB
Plaintext
Raw Normal View History

2017-06-21 12:23:11 +00:00
# odissey configuration file.
2016-11-07 13:25:12 +00:00
#
# include "path"
2017-06-21 12:23:11 +00:00
# daemonize no
# pid_file "./odissey.pid"
log_format "text"
#log_file "./odissey.log"
log_to_stdout yes
log_syslog yes
log_syslog_ident "odissey"
log_syslog_facility "daemon"
log_debug yes
log_config yes
log_session yes
log_stats yes
stats_interval 3
nodelay yes
keepalive 7200
readahead 16384
pipelining 16384
client_max 100
workers 3
listen {
2017-06-21 12:23:11 +00:00
host "*"
port 6432
# backlog 16
2017-06-24 13:04:20 +00:00
tls "disable"
2017-06-21 12:23:11 +00:00
# tls_cert_file ""
# tls_key_file ""
# tls_ca_file ""
# tls_protocols ""
}
storage "local" {
type "local"
}
storage "pg_server" {
type "remote"
2017-06-21 12:23:11 +00:00
host "127.0.0.1"
port 5432
2017-06-24 13:04:20 +00:00
tls "disable"
2017-06-21 12:23:11 +00:00
# tls_ca_file ""
# tls_key_file ""
# tls_cert_file ""
# tls_protocols ""
}
database "console" {
user default {
authentication "none"
2017-07-13 12:34:10 +00:00
pool "session"
storage "local"
}
}
database default
{
user default {
# none, block, clear_text, md5
authentication "none"
#password "test"
2017-07-03 10:56:47 +00:00
storage "pg_server"
#storage_user "test"
#storage_password "test"
#storage_db "database"
pool "transaction"
pool_size 100
pool_timeout 4000
pool_ttl 5
pool_cancel yes
pool_discard yes
pool_rollback yes
#client_fwd_error no
#client_max 100
#client_encoding "UTF8"
#datestyle "ISO"
#timezone "UTC"
}
}