summaryrefslogtreecommitdiff
path: root/beinc_config_sample.json.readme
diff options
context:
space:
mode:
authorSimeon Simeonov2018-06-30 12:22:35 +0200
committerSimeon Simeonov2018-06-30 12:22:35 +0200
commit29ea2f46a81c516a08767eafdab9698d5cbd6150 (patch)
tree84ce1067a40eda5b5f262b8b1de56e3317a0406d /beinc_config_sample.json.readme
parent63ddf50344cf1e4f2f9b75ce3b0c4db940a3be47 (diff)
Documentation cleanups. INSTALL -> INSTALL.md, README -> README.md
Diffstat (limited to 'beinc_config_sample.json.readme')
-rw-r--r--beinc_config_sample.json.readme34
1 files changed, 4 insertions, 30 deletions
diff --git a/beinc_config_sample.json.readme b/beinc_config_sample.json.readme
index edf5845..1bc6b7f 100644
--- a/beinc_config_sample.json.readme
+++ b/beinc_config_sample.json.readme
@@ -30,8 +30,8 @@ documentation to better illustrate the comments.
30 30
31 # Encryption method for the BEINC server 31 # Encryption method for the BEINC server
32 # Possible values: 32 # Possible values:
33 # "" or "auto" - Let Twisted decide (use the newest possible method) 33 # "" or "auto" - Let the server decide
34 # "SSLv3" - SSLv3 (weak) 34 # (use the newest possible method)
35 # "TLSv1" - TLSv1.0 35 # "TLSv1" - TLSv1.0
36 # "TLSv1_1" - TLSv1.1 36 # "TLSv1_1" - TLSv1.1
37 # "TLSv1_2" - TLSv1.2 (most secure, but requires OpenSSL >= 1.0.1e) 37 # "TLSv1_2" - TLSv1.2 (most secure, but requires OpenSSL >= 1.0.1e)
@@ -52,37 +52,12 @@ documentation to better illustrate the comments.
52 # Possible values: 52 # Possible values:
53 # "none" - the instance will serve for queueing 53 # "none" - the instance will serve for queueing
54 # "pynotify" - OSD implemented using pynotify (libnotify) 54 # "pynotify" - OSD implemented using pynotify (libnotify)
55 # "pyosd" - OSD implemented using pyosd (xosd)
56 "osd_system": "pynotify", 55 "osd_system": "pynotify",
57 56
58 # OSD timeout in seconds 57 # OSD timeout in seconds
59 # The amount of time the OSD message will remain in the screen 58 # The amount of time the OSD message will remain in the screen
60 "osd_timeout": 5, 59 "osd_timeout": 5,
61 60
62 # Specify a custom font for the pyosd - backend
63 # "xfontsel" can be used to obtain a list of available fonts
64 "pyosd_font": "",
65
66 # Vertical offset (in pixels) for the pyosd - backend
67 "pyosd_vertical_offset": 120,
68
69 # Horizontal offset (in pixels) for the pyosd - backend
70 "pyosd_horizontal_offset": 30,
71
72 # Text horizontal alignment for the pyosd - backend
73 # Possible values:
74 # "left", "center", "right"
75 "pyosd_align": "left",
76
77 # Text vertical position for the pyosd - backend
78 # Possible values:
79 # "top", "middle", "bottom"
80 "pyosd_position": "bottom",
81
82 # Font color for the pyosd - backend
83 # See "rgb.txt" in the X11 distribution of a list of colors
84 "pyosd_color": "blue",
85
86 # How many entries to be kept in the queue 61 # How many entries to be kept in the queue
87 # (when "osd_system": "none") 62 # (when "osd_system": "none")
88 "queue_size": 4 63 "queue_size": 4
@@ -123,13 +98,12 @@ documentation to better illustrate the comments.
123 "ssl_ciphers": "ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384", 98 "ssl_ciphers": "ECDHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384",
124 99
125 # Don't check whether the target's hostname matches the server's 100 # Don't check whether the target's hostname matches the server's
126 # certificate. (Only for Python >= 2.7.9) 101 # certificate.
127 # Default: 0 102 # Default: 0
128 "disable-hostname-check": 0, 103 "disable-hostname-check": 0,
129 104
130 # Force the client to use a specified SSL/TLS version 105 # Force the client to use a specified SSL/TLS version
131 # Valid values: "auto", "SSLv3", "TLSv1", "TLSv1_1", "TLSv1_2" 106 # Valid values: "auto", "TLSv1", "TLSv1_1", "TLSv1_2"
132 # N.B. "TLSv1_1" and "TLSv1_2" only available in Python >= 2.7.9
133 # Default: "auto" (Let's OpenSSL select the best option) 107 # Default: "auto" (Let's OpenSSL select the best option)
134 "ssl_version": "auto", 108 "ssl_version": "auto",
135 109