Commit 652cdeb9 authored by Per Buer's avatar Per Buer

Showcase !~ in the regex example

parent 7bced23a
......@@ -404,7 +404,8 @@ insensitivity* add the flag within parens following a question mark,
like this:
::
if (req.http.host ~ "(?i)example.com$") {
# If host is NOT example dot com..
if (req.http.host !~ "(?i)example.com$") {
...
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment