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
|
%% catlfish configuration file (-*- erlang -*-)
[{sasl,
[{sasl_error_logger, false},
{errlog_type, error},
{error_logger_mf_dir, "log"},
{error_logger_mf_maxbytes, 1048576},
{error_logger_mf_maxfiles, 10}]},
{catlfish,
[{known_roots_path, "known_roots"},
{https_servers,
[{external_https_api, "0.0.0.0", 8080, v1},
{storage_https_api, "0.0.0.0", 8081, storage},
{frontend_https_api, "0.0.0.0", 8082, frontend}
]},
{https_certfile, "https/certs/webcert.pem"},
{https_keyfile, "https/keys/webkey.pem"},
{https_cacertfile, "https/certs/webcert.pem"}
]},
{lager,
[{handlers,
[{lager_console_backend, info},
{lager_file_backend, [{file, "log/error.log"}, {level, error}]},
{lager_file_backend, [{file, "log/debug.log"}, {level, debug}]},
{lager_file_backend, [{file, "log/console.log"}, {level, info}]}
]}
]},
{plop,
[{entry_root_path, "db/certentries/"},
{index_path, "db/index"},
{newentries_path, "db/newentries"},
{entryhash_root_path, "db/entryhash/"},
{treesize_path, "db/treesize"},
{indexforhash_root_path, "db/certindex/"},
{storage_nodes,
["https://127.0.0.1:8081/ct/storage/"]},
{storage_nodes_quorum, 1}
]}].
|