Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mozilla/ssl-config-generator.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorApril King <april@mozilla.com>2019-07-17 00:20:54 +0300
committerApril King <april@mozilla.com>2019-07-17 00:20:54 +0300
commit89edf121761ba4507382dbec4f00b1b31da55e99 (patch)
tree8079527f580e1f4f1ce519f0cd461f94f8914419 /README.md
parent8e726dbbad1aec5c95e76d1f90c1b0836b9058f7 (diff)
Add beta support for Traefik
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index dc8f9c7..eb1c127 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,8 @@ There are two places that need to be updated in order to add support for a new p
All of the templates are written in [Handlebars.js](https://handlebarsjs.com/), and so therefore support all of its standard features. This includes `if`/`else`/`unless` conditionals and `each` loops, for example. In addition, the configuration generator supports the following helpers:
-- `includes(item, stringOrArray`) - `true` if `stringOrArray` contains `item`
+- `eq(item, value)` - `true` if `item` equals `value`
+- `includes(item, stringOrArray)` - `true` if `stringOrArray` contains `item`
- `join(array, joiner)` - split a array into a string based on `joiner`
- `{{{join output.ciphers ":"}}}`
- `last(array)` - returns the last item in the array