Skip to content

Commit 135c323

Browse files
author
Mark
committed
added ssl docu
1 parent 900f1e1 commit 135c323

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

docs/setup.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,14 @@ Example for arangodb.properties:
4343
arangodb.user=root
4444
arangodb.password=
4545

46+
```
47+
48+
## SSL
49+
50+
To use SSL, you have to set the configuration `useSsl` to `true` and set a `SSLContext`. (see [example code](../src/test/java/com/arangodb/example/ssl/SslExample.java))
51+
52+
``` Java
53+
54+
ArangoDB arangoDB = new ArangoDB.Builder().useSsl(true).sslContext(sc).build();
55+
4656
```

0 commit comments

Comments
 (0)