-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathtest.config
44 lines (44 loc) · 1.46 KB
/
test.config
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
39
40
41
42
43
44
%% -*- erlang -*-
[
{router, [
{oui, 1},
{metrics_port, 3001},
{max_v8_context, 10},
{router_http_channel_url_check, false},
{router_xor_filter_worker, false},
{charge_when_no_offer, true}
]},
{blockchain, [
{port, 3615},
{sc_sup_type, server}
]},
{grpcbox, [
{client, #{channels => [{default_channel, [{http, "localhost", 8080, []}], #{}}]}},
{servers, [
#{
grpc_opts => #{
service_protos => [router_pb, state_channel_pb, packet_router_pb],
services => #{
'helium.router' => helium_router_service,
'helium.state_channel' => blockchain_grpc_sc_server_handler,
'helium.packet_router.packet' => helium_packet_service
}
},
transport_opts => #{ssl => false},
listen_opts => #{
port => 8080,
ip => {0, 0, 0, 0}
},
pool_opts => #{size => 2},
server_opts => #{
header_table_size => 4096,
enable_push => 1,
max_concurrent_streams => unlimited,
initial_window_size => 65535,
max_frame_size => 16384,
max_header_list_size => unlimited
}
}
]}
]}
].