aboutsummaryrefslogtreecommitdiffstats
path: root/signaling-server/config.json.default
diff options
context:
space:
mode:
Diffstat (limited to 'signaling-server/config.json.default')
-rw-r--r--signaling-server/config.json.default24
1 files changed, 24 insertions, 0 deletions
diff --git a/signaling-server/config.json.default b/signaling-server/config.json.default
new file mode 100644
index 0000000..4d9b5b2
--- /dev/null
+++ b/signaling-server/config.json.default
@@ -0,0 +1,24 @@
+{
+ /* The ID of the node instance */
+ "nodeId" : 1,
+
+ /* The port to listen on */
+ "port" : 4500,
+
+ /* Allow anonymous connections */
+ "anonymous" : false,
+
+ /* Redis configuration (required if anonymous == false) */
+ "redis" : {
+ "host" : "127.0.0.1",
+ "port" : 6379,
+ "password" : ""
+ },
+
+ /* SSL configuration (required if using HTTPS) */
+ "ssl" : {
+ "enabled" : false,
+ "key" : "/path/to/.key",
+ "cert" : "/path/to/.crt"
+ }
+} \ No newline at end of file