summaryrefslogtreecommitdiff
path: root/beinc_config_sample.json
diff options
context:
space:
mode:
Diffstat (limited to 'beinc_config_sample.json')
-rw-r--r--beinc_config_sample.json46
1 files changed, 30 insertions, 16 deletions
diff --git a/beinc_config_sample.json b/beinc_config_sample.json
index 046e3fa..ecfe9bb 100644
--- a/beinc_config_sample.json
+++ b/beinc_config_sample.json
@@ -1,23 +1,35 @@
1{ 1{
2 "server": { 2 "server": {
3 "general": { 3 "general": {
4 "ssl_private_key": "key.pem", 4 "ssl_private_key": "/home/user/.key.pem",
5 "ssl_certificate": "cert.crt", 5 "ssl_certificate": "/home/user/.cert.pem",
6 "ssl_acceptable_ciphers": "auto", 6 "ssl_version": "TLSv1_2",
7 "ssl_version": "auto" 7 "ssl_ciphers": "ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384"
8 }, 8 },
9 "instances": [ 9 "instances": [
10 { 10 {
11 "name": "test", 11 "name": "instance1",
12 "password": "changeme",
13 "osd_system": "pynotify",
14 "osd_timeout": 5
15 },
16 {
17 "name": "instance2",
12 "password": "changeme", 18 "password": "changeme",
13 "osd_system": "pyosd", 19 "osd_system": "pyosd",
14 "osd_timeout": 5, 20 "osd_timeout": 6,
15 "pyosd_font": "", 21 "pyosd_font": "-adobe-courier-bold-o-normal--24-240-75-75-m-150-iso8859-1",
16 "pyosd_vertical_offset": 120, 22 "pyosd_vertical_offset": 120,
17 "pyosd_horizontal_offset": 30, 23 "pyosd_horizontal_offset": 30,
18 "pyosd_align": "left", 24 "pyosd_align": "left",
19 "pyosd_position": "bottom", 25 "pyosd_position": "top",
20 "pyosd_color": "blue", 26 "pyosd_color": "blue"
27 },
28 {
29 "name": "instance3",
30 "password": "changeme",
31 "osd_system": "none",
32 "osd_timeout": 5,
21 "queue_size": 4 33 "queue_size": 4
22 } 34 }
23 ] 35 ]
@@ -29,26 +41,28 @@
29 "name": "weechat_main", 41 "name": "weechat_main",
30 "target_url": "https://10.0.0.2:9898", 42 "target_url": "https://10.0.0.2:9898",
31 "target_password": "changeme", 43 "target_password": "changeme",
32 "target_cert_file": "", 44 "target_cert_file": "/home/user/.ca_cert.pem",
33 "target_timestamp_format": "%H:%M:%S", 45 "target_timestamp_format": "%H:%M:%S",
34 "socket_timeout": 30, 46 "ssl_version": "TLSv1_2",
47 "ssl_ciphers": "auto",
48 "disable-hostname-check": 0,
49 "socket_timeout": 2,
35 "pm_title_template": "%s @ %S", 50 "pm_title_template": "%s @ %S",
36 "pm_message_template": "%m", 51 "pm_message_template": "%m",
37 "cm_title_template": "%c @ %S", 52 "cm_title_template": "%c @ %S",
38 "cm_message_template": "%s -> %m", 53 "cm_message_template": "%s -> %m",
39 "nm_title_template": "%c @ %S", 54 "nm_title_template": "%c @ %S",
40 "nm_message_template": "%s -> %m", 55 "nm_message_template": "%s -> %m",
41 "channel_list": ["RedpillLinpro.#python", 56 "channel_list": ["Freenode.#python",
42 "Exile.#test", 57 "Exile.#test",
43 "RedpillLinpro.#adult", 58 "Freenode.#gentoo",
44 "Exile.#pichove"], 59 "Exile.#pichove"],
45 "nick_list": ["Exile.Blackmore"], 60 "nick_list": ["Exile.Blackmore"],
46 "channel_messages_policy": 2, 61 "channel_messages_policy": 2,
47 "private_messages_policy": 1, 62 "private_messages_policy": 1,
48 "notifications_policy": 1, 63 "notifications_policy": 1,
49 "debug": 1, 64 "debug": 0,
50 "enabled": 1, 65 "enabled": 1
51 "socket_timeout": 3
52 } 66 }
53 ] 67 ]
54 }, 68 },