forked from vernemq/vernemq
-
Notifications
You must be signed in to change notification settings - Fork 5
/
dev_vars.config.src
54 lines (48 loc) · 1.52 KB
/
dev_vars.config.src
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
54
%% -*- 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, "@NODE@"}.
{crash_dump, "{{platform_log_dir}}/erl_crash.dump"}.
%%
%% bin/vmq
%%
{runner_script_dir, "$(cd `dirname $0` ; /bin/pwd)"}.
{runner_base_dir, "$(cd `dirname $0` ; /bin/pwd)/.."}.
{runner_bin_dir, "$RUNNER_SCRIPT_DIR/"}.
{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, @MQTTPORT@}.
{mqtt_default_ws_ip, "127.0.0.1"}.
{mqtt_default_ws_port, @MQTTWSPORT@}.
{cluster_default_ip, "0.0.0.0"}.
{cluster_default_port, @CLUSTERPORT@}.
{http_default_ip, "0.0.0.0"}.
{http_default_port, @METRICSPORT@}.
{metadata_plugin, vmq_plumtree}.
%% lager
{console_log_default, both}.
%%
%% cuttlefish
%%
{cuttlefish, "on"}.
{cuttlefish_conf, "vernemq.conf"}.