Skip to content

Commit

Permalink
improve readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrthomas committed Jun 20, 2021
1 parent 86f432b commit 4ae8d61
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2101,18 +2101,18 @@ Key | Type | Required? | Description
`algorithm` | string | optional | force the SSL algorithm to one of [these values](http://docs.oracle.com/javase/8/docs/technotes/guides/security/StandardNames.html#SSLContext). Default is `TLS`.

Example:
```
```cucumber
# enable X509 certificate authentication with PKCS12 file 'certstore.pfx' and password 'certpassword'
* configure ssl = { keyStore: 'classpath:certstore.pfx', keyStorePassword: 'certpassword', keyStoreType: 'pkcs12' }
```

```
```cucumber
# trust all server certificates, in the feature file
* configure ssl = { trustAll: true }
```

```
# trust all server certificates, global configuration in 'karate-config.js'
```js
// trust all server certificates, global configuration in 'karate-config.js'
karate.configure('ssl', { trustAll: true });
```

Expand Down

0 comments on commit 4ae8d61

Please sign in to comment.