summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-01-21 10:01:15 -0500
committerChristopher Speller <crspeller@gmail.com>2016-01-21 10:01:15 -0500
commitc7faefbedcf540e938ab79e498ca86fabc967c5b (patch)
tree731262af8f8ff916a3e0d9260864804c0aaf84af /doc
parent868eece9879131e9f2093a0e858533c9df76b55c (diff)
parentff8df5bf7d45ddd39df8b265ed6af07bd3932d55 (diff)
downloadchat-c7faefbedcf540e938ab79e498ca86fabc967c5b.tar.gz
chat-c7faefbedcf540e938ab79e498ca86fabc967c5b.tar.bz2
chat-c7faefbedcf540e938ab79e498ca86fabc967c5b.zip
Merge pull request #1924 from loafoe/master
[#1923] Make Websocket ports configurable
Diffstat (limited to 'doc')
-rw-r--r--doc/install/Configuration-Settings.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/install/Configuration-Settings.md b/doc/install/Configuration-Settings.md
index 31d4551f6..7ee440b7c 100644
--- a/doc/install/Configuration-Settings.md
+++ b/doc/install/Configuration-Settings.md
@@ -41,6 +41,13 @@ Set the number of days before SSO sessions expire.
```"SessionCacheInMinutes" : 10```
Set the number of minutes to cache a session in memory.
+```"WebsocketSecurePort": 443```
+The port to use for secure websocket connections being initiated from the client. By default wss:// uses port 443. Some server configurations (e.g. Cloudfoundry) support wss on a different port.
+
+```"WebsocketPort": 80```
+The port to use for websocket connections being initiated from the client. By default ws:// uses port 80.
+
+
#### Webhooks
```"EnableIncomingWebhooks": true```