diff options
author | Dana Powers <dana.powers@gmail.com> | 2016-04-04 19:54:22 -0700 |
---|---|---|
committer | Dana Powers <dana.powers@gmail.com> | 2016-04-09 09:24:40 -0700 |
commit | 097198cceaed97d5b804166d0c76a816c8dfead0 (patch) | |
tree | 54c8520e94af2d72ca715c4db9bb855fbfa5574d /servers | |
parent | 01f03656cc613a2281d22521da4a016c7fa4a8ba (diff) | |
download | kafka-python-097198cceaed97d5b804166d0c76a816c8dfead0.tar.gz |
Attempt to add ssl support to kafka fixturesssl_support
Diffstat (limited to 'servers')
-rw-r--r-- | servers/0.10.0.0/resources/kafka.properties | 13 | ||||
-rw-r--r-- | servers/0.9.0.0/resources/kafka.properties | 13 | ||||
-rw-r--r-- | servers/0.9.0.1/resources/kafka.properties | 13 |
3 files changed, 33 insertions, 6 deletions
diff --git a/servers/0.10.0.0/resources/kafka.properties b/servers/0.10.0.0/resources/kafka.properties index 2fd9c54..7a19a11 100644 --- a/servers/0.10.0.0/resources/kafka.properties +++ b/servers/0.10.0.0/resources/kafka.properties @@ -21,11 +21,20 @@ broker.id={broker_id} ############################# Socket Server Settings ############################# +listeners={transport}://{host}:{port} +security.inter.broker.protocol={transport} + +ssl.keystore.location={ssl_dir}/server.keystore.jks +ssl.keystore.password=foobar +ssl.key.password=foobar +ssl.truststore.location={ssl_dir}/server.truststore.jks +ssl.truststore.password=foobar + # The port the socket server listens on -port={port} +#port=9092 # Hostname the broker will bind to. If not set, the server will bind to all interfaces -host.name={host} +#host.name=localhost # Hostname the broker will advertise to producers and consumers. If not set, it uses the # value for "host.name" if configured. Otherwise, it will use the value returned from diff --git a/servers/0.9.0.0/resources/kafka.properties b/servers/0.9.0.0/resources/kafka.properties index 0592c1e..b70a0da 100644 --- a/servers/0.9.0.0/resources/kafka.properties +++ b/servers/0.9.0.0/resources/kafka.properties @@ -21,11 +21,20 @@ broker.id={broker_id} ############################# Socket Server Settings ############################# +listeners={transport}://{host}:{port} +security.inter.broker.protocol={transport} + +ssl.keystore.location={ssl_dir}/server.keystore.jks +ssl.keystore.password=foobar +ssl.key.password=foobar +ssl.truststore.location={ssl_dir}/server.truststore.jks +ssl.truststore.password=foobar + # The port the socket server listens on -port={port} +#port=9092 # Hostname the broker will bind to. If not set, the server will bind to all interfaces -host.name={host} +#host.name=localhost # Hostname the broker will advertise to producers and consumers. If not set, it uses the # value for "host.name" if configured. Otherwise, it will use the value returned from diff --git a/servers/0.9.0.1/resources/kafka.properties b/servers/0.9.0.1/resources/kafka.properties index 2fd9c54..7a19a11 100644 --- a/servers/0.9.0.1/resources/kafka.properties +++ b/servers/0.9.0.1/resources/kafka.properties @@ -21,11 +21,20 @@ broker.id={broker_id} ############################# Socket Server Settings ############################# +listeners={transport}://{host}:{port} +security.inter.broker.protocol={transport} + +ssl.keystore.location={ssl_dir}/server.keystore.jks +ssl.keystore.password=foobar +ssl.key.password=foobar +ssl.truststore.location={ssl_dir}/server.truststore.jks +ssl.truststore.password=foobar + # The port the socket server listens on -port={port} +#port=9092 # Hostname the broker will bind to. If not set, the server will bind to all interfaces -host.name={host} +#host.name=localhost # Hostname the broker will advertise to producers and consumers. If not set, it uses the # value for "host.name" if configured. Otherwise, it will use the value returned from |