Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add complete list of configuration into websocket.conf template file #372

Merged
merged 1 commit into from
Apr 21, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion conf/websocket.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,19 @@
# Global Zookeeper quorum connection string
globalZookeeperServers=

// Pulsar cluster url to connect to broker (optional if globalZookeeperServers present)
# Zookeeper session timeout in milliseconds
zooKeeperSessionTimeoutMillis=30000

# Pulsar cluster url to connect to broker (optional if globalZookeeperServers present)
serviceUrl=
serviceUrlTls=
brokerServiceUrl=
brokerServiceUrlTls=

# Port to use to server HTTP request
webServicePort=8080
# Port to use to server HTTPS request
webServicePortTls=8443

# Hostname or IP address the service binds on, default is 0.0.0.0.
bindAddress=0.0.0.0
Expand All @@ -49,6 +54,26 @@ authorizationEnabled=false
# operations and publish/consume from all topics
superUserRoles=

# Autentication provider name list (comma-separated), which is a list of class names
authenticationProviders=

# Authentication settings of the proxy itself. Used to connect to brokers
brokerClientAuthenticationPlugin=
brokerClientAuthenticationParameters=

### --- TLS --- ###

# Enable TLS
tlsEnabled=false

# Accept untrusted TLS certificate from client
tlsAllowInsecureConnection=false

# Path for the TLS certificate file
tlsCertificateFilePath=

# Path for the TLS private key file
tlsKeyFilePath=

# Path for the trusted TLS certificate file
tlsTrustCertsFilePath=