From f5f890a196c3f074aa2938efde0899670a3a599f Mon Sep 17 00:00:00 2001 From: Chris Thain <32781396+cthain@users.noreply.github.com> Date: Mon, 19 Jun 2023 13:55:19 -0700 Subject: [PATCH] Fix usage examples in README. (#205) Co-authored-by: Matteo Pace --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b1d5d95..2a6dcc1 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ In order to run the coraza-proxy-wasm we need to spin up an envoy configuration "SecRule REQUEST_URI \"@streq /admin\" \"id:101,phase:1,t:lowercase,deny\"" ] }, - "default_directives": "default", + "default_directives": "default" } vm_config: runtime: "envoy.wasm.runtime.v8" @@ -102,13 +102,14 @@ configuration: { "directives_map": { "default": [ + "Include @demo-conf", "SecDebugLogLevel 9", "SecRuleEngine On", "Include @crs-setup-demo-conf", "Include @owasp_crs/*.conf" ] }, - "default_directives": "default", + "default_directives": "default" } ``` @@ -121,13 +122,14 @@ configuration: { "directives_map": { "default": [ + "Include @demo-conf", "SecDebugLogLevel 9", "SecRuleEngine On", "Include @crs-setup-demo-conf", "Include @owasp_crs/REQUEST-901-INITIALIZATION.conf" ] }, - "default_directives": "default", + "default_directives": "default" } ```