internetee-epp_proxy/config/test.config
2025-04-14 12:57:40 +03:00

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]}
]}
]}
].