From 3a3c8d5ba29324c87d1e8282c4ae5c1c4742e7b9 Mon Sep 17 00:00:00 2001 From: Margaret Eker Date: Tue, 20 Oct 2020 10:37:05 -0500 Subject: [PATCH] Fix code sample Add missing semicolon from bypass VCL code sample --- src/cloud/cdn/fastly-vcl-allowlist.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cloud/cdn/fastly-vcl-allowlist.md b/src/cloud/cdn/fastly-vcl-allowlist.md index a88aa908e84..fcca4541c17 100644 --- a/src/cloud/cdn/fastly-vcl-allowlist.md +++ b/src/cloud/cdn/fastly-vcl-allowlist.md @@ -114,7 +114,7 @@ After reviewing and updating the code for your environment, use either of the fo - Add the **VCL** snippet content: ```conf - if ((req.url ~ "^/admin") && !(client.ip ~ allowlist) && !req.http.Fastly-FF) { error 403 "Forbidden"} + if ((req.url ~ "^/admin") && !(client.ip ~ allowlist) && !req.http.Fastly-FF) { error 403 "Forbidden";} ``` 1. Click **Create** to generate the VCL snippet file with the name pattern `type_priority_name.vcl`, for example `recv_5_allowlist.vcl`