Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Fix code sample #8096

Merged
merged 2 commits into from
Oct 21, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cloud/cdn/fastly-vcl-allowlist.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down