mirror of
https://github.com/internetee/epp_proxy.git
synced 2025-08-21 14:49:33 +02:00
Also includes small syntax fixes to sys.config, as well as one compilation warning removal.
22 lines
773 B
Erlang
22 lines
773 B
Erlang
%% -*- erlang -*-
|
|
[
|
|
{epp_proxy, [
|
|
{dev_mode, true},
|
|
{tcp_port, 3333},
|
|
{tls_port, 700},
|
|
{insecure, false},
|
|
{epp_session_url, "http://epp:3000/epp/session/"},
|
|
{epp_command_url, "http://epp:3000/epp/command/"},
|
|
{epp_error_url, "http://epp:3000/epp/error/"},
|
|
{cacertfile_path, "/opt/ca/certs/ca.crt.pem"},
|
|
{certfile_path, "/opt/ca/certs/apache.crt"},
|
|
{keyfile_path, "/opt/ca/private/apache.key"},
|
|
{crlfile_path, "/opt/ca/crl/crl.pem"}
|
|
]},
|
|
{lager, [
|
|
{handlers, [
|
|
{lager_console_backend, [{level, debug}]}
|
|
%% {lager_syslog_backend, ["epp_proxy", local1, info]}
|
|
]}
|
|
]}
|
|
].
|