| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- % -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
- %% ex: ft=erlang ts=4 sw=4 et
- [{kernel, [
- {start_timer, true},
- {start_pg2, true}
- ]},
- {sasl, [
- {sasl_error_logger, {file, "log/emqttd_sasl.log"}}
- ]},
- {ssl, [
- %{versions, ['tlsv1.2', 'tlsv1.1']}
- ]},
- {lager, [
- {colored, true},
- {async_threshold, 1000},
- {error_logger_redirect, false},
- {crash_log, "log/emqttd_crash.log"},
- {handlers, [
- {lager_console_backend, info},
- %%NOTICE: Level >= error
- %%{lager_emqtt_backend, error},
- {lager_file_backend, [
- {formatter_config, [time, " ", pid, " [",severity,"] ", message, "\n"]},
- {file, "log/emqttd_info.log"},
- {level, info},
- {size, 104857600},
- {date, "$D0"},
- {count, 30}
- ]},
- {lager_file_backend, [
- {formatter_config, [time, " ", pid, " [",severity,"] ", message, "\n"]},
- {file, "log/emqttd_error.log"},
- {level, error},
- {size, 104857600},
- {date, "$D0"},
- {count, 30}
- ]}
- ]}
- ]},
- {esockd, [
- {logger, {lager, info}}
- ]},
- {emqttd, [
- %% Authentication and Authorization
- {access, [
- %% Authetication. Anonymous Default
- {auth, [
- %% Authentication with username, password
- %{username, []},
-
- %% Authentication with clientid
- %{clientid, [{password, no}, {file, "etc/clients.config"}]},
- %% Authentication with LDAP
- % {ldap, [
- % {servers, ["localhost"]},
- % {port, 389},
- % {timeout, 30},
- % {user_dn, "uid=$u,ou=People,dc=example,dc=com"},
- % {ssl, fasle},
- % {sslopts, [
- % {"certfile", "ssl.crt"},
- % {"keyfile", "ssl.key"}]}
- % ]},
- %% Allow all
- {anonymous, []}
- ]},
- %% ACL config
- {acl, [
- %% Internal ACL module
- {internal, [{file, "etc/acl.config"}, {nomatch, allow}]}
- ]}
- ]},
- %% MQTT Protocol Options
- {mqtt, [
- %% Packet
- {packet, [
- %% Max ClientId Length Allowed
- {max_clientid_len, 1024},
- %% Max Packet Size Allowed, 64K default
- {max_packet_size, 65536}
- ]},
- %% Client
- {client, [
- %% Socket is connected, but no 'CONNECT' packet received
- {idle_timeout, 10} %% seconds
- %TODO: Network ingoing limit
- %{ingoing_rate_limit, '64KB/s'}
- %TODO: Reconnet control
- ]},
- %% Session
- {session, [
- %% Max number of QoS 1 and 2 messages that can be “in flight” at one time.
- %% 0 means no limit
- {max_inflight, 100},
- %% Retry interval for redelivering QoS1/2 messages.
- {unack_retry_interval, 20},
- %% Awaiting PUBREL Timeout
- {await_rel_timeout, 20},
- %% Max Packets that Awaiting PUBREL, 0 means no limit
- {max_awaiting_rel, 0},
- %% Statistics Collection Interval(seconds)
- {collect_interval, 20},
- %% Expired after 2 days
- {expired_after, 48}
- ]},
- %% Session
- {queue, [
- %% Max queue length. enqueued messages when persistent client disconnected,
- %% or inflight window is full.
- {max_length, 100},
- %% Low-water mark of queued messages
- {low_watermark, 0.2},
- %% High-water mark of queued messages
- {high_watermark, 0.6},
- %% Queue Qos0 messages?
- {queue_qos0, true}
- ]}
- ]},
- %% Broker Options
- {broker, [
- %% System interval of publishing broker $SYS messages
- {sys_interval, 60},
- %% Retained messages
- {retained, [
- %% Expired after seconds, never expired if 0
- {expired_after, 0},
- %% Max number of retained messages
- {max_message_num, 100000},
- %% Max Payload Size of retained message
- {max_playload_size, 65536}
- ]},
- %% PubSub and Router
- {pubsub, [
- %% Default should be scheduler numbers
- {pool_size, 8},
-
- %% Subscription: disc | ram | false
- {subscription, ram},
- %% Route shard
- {route_shard, false},
- %% Route delay, false | integer
- {route_delay, false},
- %% Route aging time(seconds)
- {route_aging, 5}
- ]},
- %% Bridge
- {bridge, [
- %%TODO: bridge queue size
- {max_queue_len, 10000},
- %% Ping Interval of bridge node
- {ping_down_interval, 1} %seconds
- ]}
- ]},
- %% Modules
- {modules, [
- %% Client presence management module.
- %% Publish messages when client connected or disconnected
- {presence, [{qos, 0}]},
- %% Subscribe topics automatically when client connected
- {subscription, [
- %% Subscription from stored table
- stored,
- %% $u will be replaced with username
- {"$Q/username/$u", 1},
- %% $c will be replaced with clientid
- {"$Q/client/$c", 1}
- ]}
- %% Rewrite rules
- %% {rewrite, [{file, "etc/rewrite.config"}]}
- ]},
- %% Plugins
- {plugins, [
- %% Plugin App Library Dir
- {plugins_dir, "./plugins"},
- %% File to store loaded plugin names.
- {loaded_file, "./data/loaded_plugins"}
- ]},
- %% Listeners
- {listeners, [
- {mqtt, 1883, [
- %% Size of acceptor pool
- {acceptors, 16},
- %% Maximum number of concurrent clients
- {max_clients, 512},
- %% Socket Access Control
- {access, [{allow, all}]},
- %% Connection Options
- {connopts, [
- %% Rate Limit. Format is 'burst, rate', Unit is KB/Sec
- %% {rate_limit, "100,10"} %% 100K burst, 10K rate
- ]},
- %% Socket Options
- {sockopts, [
- %Set buffer if hight thoughtput
- %{recbuf, 4096},
- %{sndbuf, 4096},
- %{buffer, 4096},
- %{nodelay, true},
- {backlog, 512}
- ]}
- ]},
- {mqtts, 8883, [
- %% Size of acceptor pool
- {acceptors, 4},
- %% Maximum number of concurrent clients
- {max_clients, 512},
- %% Socket Access Control
- {access, [{allow, all}]},
- %% SSL certificate and key files
- {ssl, [{certfile, "etc/ssl/ssl.crt"},
- {keyfile, "etc/ssl/ssl.key"}]},
- %% Socket Options
- {sockopts, [
- {backlog, 1024}
- %{buffer, 4096},
- ]}
- ]},
- %% WebSocket over HTTPS Listener
- %% {https, 8083, [
- %% %% Size of acceptor pool
- %% {acceptors, 4},
- %% %% Maximum number of concurrent clients
- %% {max_clients, 512},
- %% %% Socket Access Control
- %% {access, [{allow, all}]},
- %% %% SSL certificate and key files
- %% {ssl, [{certfile, "etc/ssl/ssl.crt"},
- %% {keyfile, "etc/ssl/ssl.key"}]},
- %% %% Socket Options
- %% {sockopts, [
- %% %{buffer, 4096},
- %% {backlog, 1024}
- %% ]}
- %%]},
- %% HTTP and WebSocket Listener
- {http, 8083, [
- %% Size of acceptor pool
- {acceptors, 4},
- %% Maximum number of concurrent clients
- {max_clients, 64},
- %% Socket Access Control
- {access, [{allow, all}]},
- %% Socket Options
- {sockopts, [
- {backlog, 1024}
- %{buffer, 4096},
- ]}
- ]}
- ]},
- %% Erlang System Monitor
- {sysmon, [
- %% Long GC
- {long_gc, 100},
- %% Long Schedule(ms)
- {long_schedule, 100},
- %% 8M words. 32MB on 32-bit VM, 64MB on 64-bit VM.
- %% 8 * 1024 * 1024
- {large_heap, 8388608},
- %% Busy Port
- {busy_port, true},
- %% Busy Dist Port
- {busy_dist_port, true}
- ]}
- ]}
- ].
|