-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtest.config
More file actions
24 lines (24 loc) · 985 Bytes
/
test.config
File metadata and controls
24 lines (24 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
%% -*- 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/"},
%% Allows client to connect to epp_proxy without client certificate using TLS
{require_client_certs, true},
%% 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]}
]}
]}
].