File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ that will invalidate the cache for a given resource:
137
137
.port = "8080";
138
138
}
139
139
140
- // Acl 's can contain IP's, subnets and hostnames
140
+ // ACL 's can contain IP's, subnets and hostnames
141
141
acl purge {
142
142
"localhost";
143
143
"192.168.55.0"/24;
@@ -146,7 +146,7 @@ that will invalidate the cache for a given resource:
146
146
sub vcl_recv {
147
147
// Match PURGE request to avoid cache bypassing
148
148
if (req.request == "PURGE") {
149
- // Match client IP to the acl
149
+ // Match client IP to the ACL
150
150
if (!client.ip ~ purge) {
151
151
// Deny access
152
152
error 405 "Not allowed.";
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ Using the built-in Matcher
16
16
Symfony2 provides a
17
17
:class: `built-in matcher <Symfony\\ Component\\ HttpFoundation\\ RequestMatcher> `
18
18
which can match paths and IPs. For example, if you want to only show the
19
- profiler when accessing the page with the ``168.0.0.1 `` ip , then you can
19
+ profiler when accessing the page with the ``168.0.0.1 `` IP , then you can
20
20
use this configuration:
21
21
22
22
.. configuration-block ::
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ which requires the following three methods:
31
31
}
32
32
33
33
The ``supportsAttribute() `` method is used to check if the voter supports
34
- the given user attribute (i.e: a role, an acl , etc.).
34
+ the given user attribute (i.e: a role, an ACL , etc.).
35
35
36
36
The ``supportsClass() `` method is used to check if the voter supports the
37
37
current user token class.
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ version
83
83
84
84
**type **: ``string `` **default **: ``4 ``
85
85
86
- This determines exactly *how * the ip address is validated and can take one
86
+ This determines exactly *how * the IP address is validated and can take one
87
87
of a variety of different values:
88
88
89
89
**All ranges **
You can’t perform that action at this time.
0 commit comments