Repository: stratos Updated Branches: refs/heads/stratos-4.1.x bc2d022d5 -> d2c842a4a
updating install.md Project: http://git-wip-us.apache.org/repos/asf/stratos/repo Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/d2c842a4 Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/d2c842a4 Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/d2c842a4 Branch: refs/heads/stratos-4.1.x Commit: d2c842a4aa6e45f5f9c21142fe71fd52052e2763 Parents: bc2d022 Author: reka <[email protected]> Authored: Tue Oct 13 14:18:03 2015 +0530 Committer: reka <[email protected]> Committed: Tue Oct 13 14:18:03 2015 +0530 ---------------------------------------------------------------------- .../modules/nginx-extension/INSTALL.md | 35 ++++++++++++++------ 1 file changed, 24 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/stratos/blob/d2c842a4/extensions/load-balancer/modules/nginx-extension/INSTALL.md ---------------------------------------------------------------------- diff --git a/extensions/load-balancer/modules/nginx-extension/INSTALL.md b/extensions/load-balancer/modules/nginx-extension/INSTALL.md index 3e0aa5a..bc0c5d3 100644 --- a/extensions/load-balancer/modules/nginx-extension/INSTALL.md +++ b/extensions/load-balancer/modules/nginx-extension/INSTALL.md @@ -9,20 +9,33 @@ below steps to proceed with the installation: 3. Open <nginx-extension-home>/bin/nginx-extension.sh file in a text editor and update following system properties: ``` - # Define nginx host private ip address: - -Dnginx.private.ip=127.0.0.1 + # Define nginx host private ip address: + -Dnginx.private.ip=127.0.0.1 - # Define the nginx executable file path: - -Dexecutable.file.path=<nginx-home>/nginx + # Define the nginx executable file path: + -Dexecutable.file.path=<nginx-home>/nginx - # Enable/disable cep statistics publisher: - -Dcep.stats.publisher.enabled=false + # Update the nginx.conf file patch + -Dconf.file.path=/etc/nginx/nginx.conf + + #update the certificate for SSL configuration + -Dnginx.cert.path=/etc/nginx/ssl/server.cert + + #update the server key for SSL configuration + -Dnginx.key.path=/etc/nginx/ssl/server.key + + # Update the hostname length, if needed + -Dnginx.server.names.hash.bucket.size=128 + + # Enable/disable cep statistics publisher: + -Dcep.stats.publisher.enabled=false + + # If cep statistics publisher is enabled define the following properties: + -Dthrift.receiver.ip=127.0.0.1 + -Dthrift.receiver.port=7615 + -Dnetwork.partition.id=network-partition-1 + ``` - # If cep statistics publisher is enabled define the following properties: - -Dthrift.receiver.ip=127.0.0.1 - -Dthrift.receiver.port=7615 - -Dnetwork.partition.id=network-partition-1 - ``` 4. Open <nginx-extension-home>/conf/jndi.properties file in a text editor and update message broker information: ```
