Github user geomacy commented on a diff in the pull request:
https://github.com/apache/brooklyn-docs/pull/108#discussion_r80010278
--- Diff: guide/ops/https.md ---
@@ -0,0 +1,53 @@
+---
+title: HTTPS Configuration
+layout: website-normal
+---
+
+## HTTPS Configuration
+
+### Getting the Certificate
+To enable HTTPS web access, you will need a server certificate in a java
keystore. To create a self-signed certificate,
+and add it to a keystore, `keystore.jks`, you can use the following
command:
+
+{% highlight bash %}
+% keytool -genkey -keyalg RSA -alias brooklyn \
+ -keystore <path-to-keystore-directory>/keystore.jks -storepass
"mypassword" \
+ -validity 365 -keysize 2048 -keypass "password"
+{% endhighlight %}
+
+Of course, the passwords above should be changed. Omit those arguments
above for the tool to prompt you for the values.
--- End diff --
done
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---