fistful-server/config/sys.config

145 lines
4.6 KiB
Plaintext
Raw Normal View History

2018-06-13 13:43:48 +00:00
[
{lager, [
{error_logger_hwm, 600},
{log_root, "/var/log/fistful-server"},
{crash_log, "crash.log"},
{handlers, [
{lager_file_backend, [
{file, "console.json"},
{level, debug},
{formatter, lager_logstash_formatter}
]}
]}
]},
{scoper, [
{storage, scoper_storage_lager}
]},
2018-07-05 10:57:59 +00:00
{dmt_client, [
{max_cache_size, #{
elements => 1
}},
{service_urls, #{
'Repository' => <<"http://dominant:8022/v1/domain/repository">>,
'RepositoryClient' => <<"http://dominant:8022/v1/domain/repository_client">>
}}
]},
2018-06-13 13:43:48 +00:00
{fistful, [
{providers, #{
<<"ncoeps">> => #{
payment_institution_id => 100,
routes => [<<"mocketbank">>],
2018-06-13 13:43:48 +00:00
identity_classes => #{
<<"person">> => #{
name => <<"Person">>,
2018-07-06 15:11:59 +00:00
contract_template_id => 10000,
2018-07-05 10:57:59 +00:00
initial_level => <<"anonymous">>,
2018-06-13 13:43:48 +00:00
levels => #{
<<"anonymous">> => #{
name => <<"Anonymous">>,
contractor_level => none
},
<<"partly-identified">> => #{
name => <<"Partially identified">>,
contractor_level => partial
},
<<"identified">> => #{
name => <<"Fully identified">>,
contractor_level => full
}
},
challenges => #{
<<"esia">> => #{
name => <<"ЕСИА">>,
base => <<"anonymous">>,
target => <<"partly-identified">>
}
2018-06-13 13:43:48 +00:00
}
}
}
}
2018-07-05 10:57:59 +00:00
}},
{services, #{
2018-07-06 13:49:30 +00:00
'partymgmt' => "http://hellgate:8022/v1/processing/partymgmt",
'accounter' => "http://shumway:8022/accounter",
'identification' => "http://identification:8022/v1/identification"
}}
]},
{ff_transfer, [
{withdrawal,
#{provider => #{
<<"mocketbank">> => #{
adapter => #{
event_handler => scoper_woody_event_handler,
url => <<"http://adapter-mocketbank:8022/proxy/mocketbank/p2p-credit">>
},
adapter_opts => #{}
}
}
2018-07-08 16:58:55 +00:00
}}
]},
2018-07-06 13:49:30 +00:00
%% wapi
{wapi, [
{ip, "::"},
{port, 8080},
%% To send ASCII text in 5xx replies
%% {oops_bodies, #{
%% 500 => "oops_bodies/500_body"
%% }},
{realm, <<"external">>},
2018-07-08 16:58:55 +00:00
{public_endpoint, <<"http://wapi">>},
2018-07-06 13:49:30 +00:00
{authorizers, #{
jwt => #{
signee => wapi,
keyset => #{
wapi => {pem_file, "var/keys/wapi/private.pem"}
}
}
}},
{service_urls, #{
webhook_manager => "http://hooker:8022/hook",
cds_storage => "http://cds:8022/v1/storage",
identdoc_storage => "http://cds:8022/v1/identity_document_storage"
2018-07-08 16:58:55 +00:00
}},
{api_deadlines, #{
wallet => 5000 % millisec
}},
2018-07-08 16:58:55 +00:00
{health_checkers, [
{erl_health, service , [<<"wapi">>]}
]}
2018-06-13 13:43:48 +00:00
]},
2018-07-05 10:57:59 +00:00
{ff_server, [
2018-06-13 13:43:48 +00:00
{ip, "::"},
{port, 8022},
2018-07-05 10:57:59 +00:00
{woody_opts, #{
net_opts => [
% Bump keepalive timeout up to a minute
{timeout, 60000}
]
}},
{services, #{
'automaton' => "http://machinegun:8022/v1/automaton"
2018-07-06 13:49:30 +00:00
}},
{admin, #{
%% handler_limits => #{},
path => <<"/v1/admin">>
}},
2018-07-06 13:49:30 +00:00
{net_opts, [
% Bump keepalive timeout up to a minute
{timeout, 60000}
]},
{health_checkers, [
{erl_health, disk , ["/", 99] },
{erl_health, cg_memory, [99] },
2018-07-08 16:58:55 +00:00
{erl_health, service , [<<"fistful-server">>]}
2018-07-06 13:49:30 +00:00
]}
2018-06-13 13:43:48 +00:00
]}
].