aboutsummaryrefslogtreecommitdiff
path: root/docs/configuration.md
diff options
context:
space:
mode:
authorscwf <wangfei1@huawei.com>2016-01-19 14:49:55 -0800
committerMarcelo Vanzin <vanzin@cloudera.com>2016-01-19 14:49:55 -0800
commit43f1d59e17d89d19b322d639c5069a3fc0c8e2ed (patch)
tree9a06aeeeb1345364957ae64bdabedb8381960068 /docs/configuration.md
parentefd7eed3222799d66d4fcb68785142dc570c8150 (diff)
downloadspark-43f1d59e17d89d19b322d639c5069a3fc0c8e2ed.tar.gz
spark-43f1d59e17d89d19b322d639c5069a3fc0c8e2ed.tar.bz2
spark-43f1d59e17d89d19b322d639c5069a3fc0c8e2ed.zip
[SPARK-2750][WEB UI] Add https support to the Web UI
Author: scwf <wangfei1@huawei.com> Author: Marcelo Vanzin <vanzin@cloudera.com> Author: WangTaoTheTonic <wangtao111@huawei.com> Author: w00228970 <wangfei1@huawei.com> Closes #10238 from vanzin/SPARK-2750.
Diffstat (limited to 'docs/configuration.md')
-rw-r--r--docs/configuration.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/configuration.md b/docs/configuration.md
index 08392c3918..12ac601296 100644
--- a/docs/configuration.md
+++ b/docs/configuration.md
@@ -1430,6 +1430,7 @@ Apart from these, the following properties are also available, and may be useful
The reference list of protocols one can find on
<a href="https://blogs.oracle.com/java-platform-group/entry/diagnosing_tls_ssl_and_https">this</a>
page.
+ Note: If not set, it will use the default cipher suites of JVM.
</td>
</tr>
<tr>
@@ -1455,6 +1456,13 @@ Apart from these, the following properties are also available, and may be useful
</td>
</tr>
<tr>
+ <td><code>spark.ssl.keyStoreType</code></td>
+ <td>JKS</td>
+ <td>
+ The type of the key-store.
+ </td>
+ </tr>
+ <tr>
<td><code>spark.ssl.protocol</code></td>
<td>None</td>
<td>
@@ -1464,6 +1472,13 @@ Apart from these, the following properties are also available, and may be useful
</td>
</tr>
<tr>
+ <td><code>spark.ssl.needClientAuth</code></td>
+ <td>false</td>
+ <td>
+ Set true if SSL needs client authentication.
+ </td>
+ </tr>
+ <tr>
<td><code>spark.ssl.trustStore</code></td>
<td>None</td>
<td>
@@ -1478,6 +1493,13 @@ Apart from these, the following properties are also available, and may be useful
A password to the trust-store.
</td>
</tr>
+ <tr>
+ <td><code>spark.ssl.trustStoreType</code></td>
+ <td>JKS</td>
+ <td>
+ The type of the trust-store.
+ </td>
+ </tr>
</table>