Support for zone configuration
This commit is contained in:
parent
a5c9c3c15d
commit
985ab723df
16
etc/emq.conf
16
etc/emq.conf
|
@ -1,6 +1,6 @@
|
|||
##===================================================================
|
||||
##====================================================================
|
||||
## EMQ Configuration R2.3.0
|
||||
##===================================================================
|
||||
##====================================================================
|
||||
|
||||
##--------------------------------------------------------------------
|
||||
## Cluster
|
||||
|
@ -327,6 +327,9 @@ listener.tcp.external.acceptors = 16
|
|||
## Maximum number of concurrent clients
|
||||
listener.tcp.external.max_clients = 102400
|
||||
|
||||
## TODO:
|
||||
## listener.tcp.external.zone = external
|
||||
|
||||
#listener.tcp.external.mountpoint = external/
|
||||
|
||||
## Rate Limit. Format is 'burst,rate', Unit is KB/Sec
|
||||
|
@ -370,6 +373,8 @@ listener.tcp.internal.acceptors = 16
|
|||
## Maximum number of concurrent clients
|
||||
listener.tcp.internal.max_clients = 102400
|
||||
|
||||
#listener.tcp.internal.zone = internal
|
||||
|
||||
#listener.tcp.external.mountpoint = internal/
|
||||
|
||||
## Rate Limit. Format is 'burst,rate', Unit is KB/Sec
|
||||
|
@ -404,6 +409,9 @@ listener.ssl.external.acceptors = 16
|
|||
## Maximum number of concurrent clients
|
||||
listener.ssl.external.max_clients = 1024
|
||||
|
||||
## Authentication Zone
|
||||
## listener.ssl.external.zone = external
|
||||
|
||||
## listener.ssl.external.mountpoint = inbound/
|
||||
|
||||
## Rate Limit. Format is 'burst,rate', Unit is KB/Sec
|
||||
|
@ -509,6 +517,8 @@ listener.ws.external.acceptors = 4
|
|||
|
||||
listener.ws.external.max_clients = 64
|
||||
|
||||
## listener.ws.external.zone = external
|
||||
|
||||
listener.ws.external.access.1 = allow all
|
||||
|
||||
## Proxy Protocol V1/2
|
||||
|
@ -539,6 +549,8 @@ listener.wss.external.acceptors = 4
|
|||
|
||||
listener.wss.external.max_clients = 64
|
||||
|
||||
## listener.wss.external.zone = external
|
||||
|
||||
listener.wss.external.access.1 = allow all
|
||||
|
||||
## Proxy Protocol V1/2
|
||||
|
|
Loading…
Reference in New Issue