-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker.config
More file actions
24 lines (24 loc) · 914 Bytes
/
docker.config
File metadata and controls
24 lines (24 loc) · 914 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, 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/"},
%% Allows client to connect to epp_proxy without client certificate using TLS
{require_client_certs, true},
{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]}
]}
]}
].