You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@slider.apache.org by jm...@apache.org on 2014/07/12 00:12:46 UTC

svn commit: r1609856 - in /incubator/slider/site/trunk: content/design/ssl_implementation.md content/docs/ssl.md templates/nav.html

Author: jmaron
Date: Fri Jul 11 22:12:45 2014
New Revision: 1609856

URL: http://svn.apache.org/r1609856
Log:
SLIDER-227 SSL documentation fixes

Modified:
    incubator/slider/site/trunk/content/design/ssl_implementation.md
    incubator/slider/site/trunk/content/docs/ssl.md
    incubator/slider/site/trunk/templates/nav.html

Modified: incubator/slider/site/trunk/content/design/ssl_implementation.md
URL: http://svn.apache.org/viewvc/incubator/slider/site/trunk/content/design/ssl_implementation.md?rev=1609856&r1=1609855&r2=1609856&view=diff
==============================================================================
--- incubator/slider/site/trunk/content/design/ssl_implementation.md (original)
+++ incubator/slider/site/trunk/content/design/ssl_implementation.md Fri Jul 11 22:12:45 2014
@@ -58,13 +58,12 @@ Figure 3 - Agent to AM Two-way SSL Commu
 
 Note that two-way SSL is enabled by setting a property ("ssl.server.client.auth") for the slider application master in the application configuration:
 
-```
-  "components": {
-    "slider-appmaster": {
-      "jvm.heapsize": "256M",
-      "ssl.server.client.auth": "true"
-    },
-```
+		"components": {
+		  "slider-appmaster": {
+		    "jvm.heapsize": "256M",
+		    "ssl.server.client.auth": "true"
+		  }
+		}
 
 
 

Modified: incubator/slider/site/trunk/content/docs/ssl.md
URL: http://svn.apache.org/viewvc/incubator/slider/site/trunk/content/docs/ssl.md?rev=1609856&r1=1609855&r2=1609856&view=diff
==============================================================================
--- incubator/slider/site/trunk/content/docs/ssl.md (original)
+++ incubator/slider/site/trunk/content/docs/ssl.md Fri Jul 11 22:12:45 2014
@@ -4,11 +4,11 @@ Two-way SSL provides a higher level of s
 * Edit the application configuration file for the application you intend to deploy
 * Modify the "slider-appmaster" component configuration by adding the "ssl.server.client.auth" property with a value of "true":
 
-```
-  "components": {
-    "slider-appmaster": {
-      "jvm.heapsize": "256M",
-      "ssl.server.client.auth": "true"
-    },
-```
+		"components": {
+		  "slider-appmaster": {
+		    "jvm.heapsize": "256M",
+		    "ssl.server.client.auth": "true"
+		  }
+		}
+
 * Create and start the cluster (e.g. by using the slider command line leveraging the "create" option)

Modified: incubator/slider/site/trunk/templates/nav.html
URL: http://svn.apache.org/viewvc/incubator/slider/site/trunk/templates/nav.html?rev=1609856&r1=1609855&r2=1609856&view=diff
==============================================================================
--- incubator/slider/site/trunk/templates/nav.html (original)
+++ incubator/slider/site/trunk/templates/nav.html Fri Jul 11 22:12:45 2014
@@ -40,6 +40,7 @@
 <li id="nav_app_needs"><a href="/docs/slider_specs/application_needs.html">Application Needs</a></li>
 <li id="nav_spec"><a href="/design/specification/index.html">Expected Behavior</a></li>
 <li id="nav_registry"><a href="/design/registry/index.html">Service Registry</a></li>
+<li id="nav_ssl_impl"><a href="/design/ssl_implementation.html">SSL Implementationy</a></li>
 <li id="nav_role_history"><a href="/design/rolehistory.html">Role History</a></li>
 </ul>
 </li>
@@ -70,6 +71,7 @@
 <li id="nav_use_client_config"><a href="/docs/client-configuration.html">Client Configuration</a></li>
 <li id="nav_use_exitcodes"><a href="/docs/exitcodes.html">Client Exit Codes</a></li>
 <li id="nav_use_security"><a href="/docs/security.html">Security</a></li>
+<li id="nav_am_agent_ssl"><a href="/docs/ssl.html">Agent to AM SSL</a></li>
 <li id="nav_use_app_package"><a href="/docs/slider_specs/index.html">Creating App Packages</a></li>
 <li id="nav_use_app_configuration"><a href="/docs/configuration/index.html">App Configuration Model</a></li>
 <li id="nav_use_debugging"><a href="/docs/debugging.html">Debugging</a></li>