forked from vernemq/vernemq
-
Notifications
You must be signed in to change notification settings - Fork 5
/
vars.config
53 lines (47 loc) · 1.31 KB
/
vars.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
45
46
47
48
49
50
51
52
53
%% -*- mode: erlang;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ft=erlang ts=4 sw=4 et
%% Platform-specific installation paths
{platform_bin_dir, "./bin"}.
{platform_data_dir, "./data"}.
{platform_etc_dir, "./etc"}.
{platform_lib_dir, "./lib"}.
{platform_log_dir, "./log"}.
{cuttlefish_schema_dir, "./share/schema"}.
{platform_share_dir, "./share"}.
%%
%% etc/vm.args
%%
{node, "[email protected]"}.
{crash_dump, "./log/erl_crash.dump"}.
%%
%% bin/vernemq
%%
{runner_script_dir, "$(cd `dirname $0` ; /bin/pwd)"}.
{runner_base_dir, "$(cd `dirname $0` ; /bin/pwd)/.."}.
{runner_etc_dir, "$RUNNER_BASE_DIR/etc"}.
{runner_log_dir, "$RUNNER_BASE_DIR/log"}.
{runner_lib_dir, "$RUNNER_BASE_DIR/lib"}.
{runner_patch_dir, "$RUNNER_BASE_DIR/lib/erlio-patches"}.
{pipe_dir, "/tmp/$RUNNER_BASE_DIR/"}.
{runner_user, ""}.
{runner_wait_process, ""}.
{runner_ulimit_warn, 65536}.
%% vmq_server
{max_connections, 10000}.
{max_nr_of_acceptors, 10}.
{mqtt_default_ip, "127.0.0.1"}.
{mqtt_default_port, 1883}.
{mqtt_default_ws_ip, "127.0.0.1"}.
{mqtt_default_ws_port, 8080}.
{cluster_default_ip, "0.0.0.0"}.
{cluster_default_port, 44053}.
{http_default_ip, "127.0.0.1"}.
{http_default_port, 8888}.
{metadata_plugin, vmq_plumtree}.
%% lager
{console_log_default, file}.
%%
%% cuttlefish
%%
{cuttlefish, "on"}.
{cuttlefish_conf, "vernemq.conf"}.