config: document websocket options
This commit is contained in:
parent
dcf450702b
commit
be2447b850
2 changed files with 15 additions and 3 deletions
|
@ -164,7 +164,13 @@ listen {
|
||||||
/* Listen on IPv6 (if you used host= above). */
|
/* Listen on IPv6 (if you used host= above). */
|
||||||
#host = "2001:db8:2::6";
|
#host = "2001:db8:2::6";
|
||||||
#port = 5000, 6665 .. 6669;
|
#port = 5000, 6665 .. 6669;
|
||||||
#sslport = 9999;
|
#sslport = 6697;
|
||||||
|
|
||||||
|
/* wsock: listeners defined with this option enabled will be websocket listeners,
|
||||||
|
* and will not accept normal clients.
|
||||||
|
*/
|
||||||
|
wsock = yes;
|
||||||
|
sslport = 9999;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* auth {}: allow users to connect to the ircd (OLD I:)
|
/* auth {}: allow users to connect to the ircd (OLD I:)
|
||||||
|
|
|
@ -324,8 +324,8 @@ listen {
|
||||||
/* port: listen on all available IPs, ports 5000 and 6665 to 6669 */
|
/* port: listen on all available IPs, ports 5000 and 6665 to 6669 */
|
||||||
port = 5000, 6665 .. 6669;
|
port = 5000, 6665 .. 6669;
|
||||||
|
|
||||||
/* sslport: listen for ssl connections on all available IPs, port 9999 */
|
/* sslport: listen for ssl connections on all available IPs, port 6697 */
|
||||||
sslport = 9999;
|
sslport = 6697;
|
||||||
|
|
||||||
/* host: set a specific IP/host the ports after the line will listen
|
/* host: set a specific IP/host the ports after the line will listen
|
||||||
* on. This may be ipv4 or ipv6.
|
* on. This may be ipv4 or ipv6.
|
||||||
|
@ -337,6 +337,12 @@ listen {
|
||||||
host = "2001:db8:2::6";
|
host = "2001:db8:2::6";
|
||||||
port = 7002;
|
port = 7002;
|
||||||
sslport = 9002;
|
sslport = 9002;
|
||||||
|
|
||||||
|
/* wsock: listeners defined with this option enabled will be websocket listeners,
|
||||||
|
* and will not accept normal clients.
|
||||||
|
*/
|
||||||
|
wsock = yes;
|
||||||
|
sslport = 9999;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* auth {}: allow users to connect to the ircd (OLD I:) */
|
/* auth {}: allow users to connect to the ircd (OLD I:) */
|
||||||
|
|
Loading…
Reference in a new issue