Anonymitaet commented on a change in pull request #5236: [doc] Improve Pulsar 
Administration Pulsar proxy
URL: https://github.com/apache/pulsar/pull/5236#discussion_r326617272
 
 

 ##########
 File path: site2/docs/administration-proxy.md
 ##########
 @@ -4,27 +4,27 @@ title: The Pulsar proxy
 sidebar_label: Pulsar proxy
 ---
 
-The [Pulsar proxy](concepts-architecture-overview.md#pulsar-proxy) is an 
optional gateway that you can run in front of the brokers in a Pulsar cluster. 
We recommend running a Pulsar proxy in cases when direction connections between 
clients and Pulsar brokers are either infeasible, undesirable, or both, for 
example when running Pulsar in a cloud environment or on 
[Kubernetes](https://kubernetes.io) or an analogous platform.
+The [Pulsar proxy](concepts-architecture-overview.md#pulsar-proxy) is an 
optional gateway that you can run in front of the brokers in a Pulsar cluster. 
You can run a Pulsar proxy in cases when direction connections between clients 
and Pulsar brokers are either infeasible, undesirable, or both, for example 
when you run Pulsar in a cloud environment or on 
[Kubernetes](https://kubernetes.io) or an analogous platform.
 
-## Configuring the proxy
+## Configure the proxy
 
 The proxy must have some way to find the addresses of the brokers of the 
cluster. You can do this by either configuring the proxy to connect directly to 
service discovery or by specifying a broker URL in the configuration. 
 
-### Option 1: Using service discovery
+### Option 1: Use service discovery
 
 Pulsar uses [ZooKeeper](https://zookeeper.apache.org) for service discovery. 
To connect the proxy to ZooKeeper, specify the following in `conf/proxy.conf`.
 ```properties
 zookeeperServers=zk-0,zk-1,zk-2
 configurationStoreServers=zk-0:2184,zk-remote:2184
 ```
 
-> If using service discovery, the network ACL must allow the proxy to talk to 
the ZooKeeper nodes on the zookeeper client port, which is usually 2181, and on 
the configuration store client port, which is 2184 by default. Opening the 
network ACLs means that if someone compromises a proxy, they have full access 
to ZooKeeper. For this reason, it is more secure to use broker URLs to 
configure the proxy.
+> If you use service discovery, the network ACL must allow the proxy to talk 
to the ZooKeeper nodes on the zookeeper client port, which is usually 2181, and 
on the configuration store client port, which is 2184 by default. Opening the 
network ACLs means that if someone compromises a proxy, they have full access 
to ZooKeeper. For this reason, using broker URLs to configure the proxy is more 
secure.
 
-### Option 2: Using broker URLs
+### Option 2: Use broker URLs
 
 The more secure method of configuring the proxy is to specify a URL to connect 
to the brokers.
 
-> 
[Authorization](security-authorization#enabling-authorization-and-assigning-superusers)
 at the proxy requires access to ZooKeeper, so if you are using this broker 
URLs to connect to the brokers, Proxy level authorization should be disabled. 
Brokers will still authorize requests after the proxy forwards them.
+> 
[Authorization](security-authorization#enable-authorization-and-assign-superusers)
 at the proxy requires access to ZooKeeper, so if you use this broker URLs to 
connect to the brokers, you should diable the Proxy level authorization. 
Brokers still authorize requests after the proxy forwards them.
 
 Review comment:
   ```suggestion
   > 
[Authorization](security-authorization#enable-authorization-and-assign-superusers)
 at the proxy requires access to ZooKeeper, so if you use these broker URLs to 
connect to the brokers, you should disable the Proxy level authorization. 
Brokers still authorize requests after the proxy forwards them.
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to