mirror of
https://github.com/internetee/epp_proxy.git
synced 2025-08-21 22:50:48 +02:00
22 lines
846 B
Erlang
22 lines
846 B
Erlang
%% -*- erlang -*-
|
|
[
|
|
{epp_proxy, [{dev_mode, true},
|
|
{tcp_port, 1180},
|
|
{tls_port, 1443},
|
|
{insecure, false},
|
|
{epp_session_url, "http://localhost:9292/session/"},
|
|
{epp_command_url, "http://localhost:9292/command/"},
|
|
{epp_error_url, "http://localhost:9292/error/"},
|
|
%% Path to root CA that should check the client certificates.
|
|
{cacertfile_path, "test_ca/certs/ca.crt.pem"},
|
|
{certfile_path, "test_ca/certs/apache.crt"},
|
|
{keyfile_path, "test_ca/private/apache.key"},
|
|
{crlfile_path, "test_ca/crl/crl.pem"}
|
|
]},
|
|
{lager, [
|
|
{handlers, [
|
|
{lager_console_backend, [{level, warning}]}
|
|
%% {lager_syslog_backend, ["epp_proxy", local0, debug]}
|
|
]}
|
|
]}
|
|
].
|