forked from gotthardp/lorawan-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlorawan_server.config
More file actions
25 lines (25 loc) · 888 Bytes
/
Copy pathlorawan_server.config
File metadata and controls
25 lines (25 loc) · 888 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
25
[
% server configuration
{lorawan_server, [
% default RX2 frequency, data rate and coding rate
{rx2_rf, {869.525, <<"SF9BW125">>, <<"4/5">>}},
% {rx2_rf, {434.665, <<"SF9BW125">>, <<"4/5">>}},
% update this list to add/remove applications
{plugins, [
{<<"semtech-mote">>, lorawan_application_semtech_mote},
{<<"microchip-mote">>, lorawan_application_microchip_mote},
{<<"websocket">>, lorawan_application_websocket}]},
% UDP port listening for packets from the packet_forwarder Gateway
{forwarder_port, 1680},
% HTTP port for web-administration and REST API
{http_admin_port, 8080},
% default username and password for the admin interface
{http_admin_credentials, {<<"admin">>, <<"admin">>}}
]},
% error logging settings
{lager, [
{colored, true},
{handlers, [
{lager_console_backend, debug}
]}
]}].