-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsys.config
More file actions
38 lines (36 loc) · 1.69 KB
/
sys.config
File metadata and controls
38 lines (36 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
%% -*- erlang -*-
[
{epp_proxy, [
%% Enables or disable TCP connections without TLS (true/false)
{dev_mode, false},
%% TCP port, only available if dev_mode is set to true.
{tcp_port, 1700},
%% TLS port, specified in RFC to 700, but can be set to anything else
%% in case that is needed.
{tls_port, "${TLS_PORT}"},
%% When set to true, you can connect to EPP over HTTPS endpoints without
%% verifying their TLS certificates.
{insecure, false},
%% URL of EPP endpoints. Can be pointed at a web server (Apache/NGINX)
%% Can contain port (https://some-host:3000/epp/session)
%% Honors the prepended protocol (http / https).
{epp_session_url, "${EPP_SESSION_URL}"},
{epp_command_url, "${EPP_COMMAND_URL}"},
{epp_error_url, "${EPP_ERROR_URL}"},
%% 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, "${CACERT_PATH}"},
%% Path to server's certficate file.
{certfile_path, "${CERT_PATH}"},
%% Path to server's key file.
{keyfile_path, "${KEY_PATH}"},
%% Path to CRL file. When this option is undefined, no CRL check is performed.
{crlfile_path, "${CRL_PATH}"}]},
{lager, [
{handlers, [
{lager_console_backend, [{level, debug}]},
{lager_syslog_backend, ["epp_proxy", local0, debug]}
]}
]}
].