Skip to content

Commit

Permalink
doc(readme) add new parameter for vault (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion authored Jun 26, 2020
1 parent b61a847 commit 7acb169
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,19 +115,26 @@ config.tos_accepted | | `false` | If you are using Let's Encrypt,
"host": "127.0.0.1",
"port": 8500,
"token": null,
"kv_path": "acme"
"kv_path": "acme",
"timeout": 2000
},
"vault": {
"host": "127.0.0.1",
"port": 8200,
"token": null,
"kv_path": "acme"
"kv_path": "acme",
"timeout": 2000,
"https": false,
"tls_verify": true,
"tls_server_name": null
},
}
```

To configure storage type other than `kong`, please refer to [lua-resty-acme](https://github.com/fffonion/lua-resty-acme#storage-adapters).

Note `tls_verify` and `tls_server_name` parameters for Vault are only supported from plugin version 0.2.6.

### Local testing and development

#### Run ngrok
Expand Down

0 comments on commit 7acb169

Please sign in to comment.