author | Sergey Poznyakoff <gray@gnu.org> | 2020-03-21 14:22:46 (GMT) |
---|---|---|
committer | Sergey Poznyakoff <gray@gnu.org> | 2020-03-21 14:22:46 (GMT) |
commit | 0774e8317694461a0d16ec365d70be08f6554c92 (patch) (side-by-side diff) | |
tree | fccbe7ca9f585487bd769fecb3ca09b07a9d4046 | |
parent | 38b9f8aecf80d5e002e3684b72a17cd0dafe9e33 (diff) | |
download | vmod-remoteip-0774e8317694461a0d16ec365d70be08f6554c92.tar.gz vmod-remoteip-0774e8317694461a0d16ec365d70be08f6554c92.tar.bz2 |
Fix typos in the docs.
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | src/vmod_remoteip.vcc | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -28,14 +28,14 @@ An example of using this module: acl allowed { "127.0.0.1"; ... } sub vcl_recv { - set resp.http.x-real-ip = remoteip.get(resp.http.X-Forwarded-For); - if (std.ip(resp.http.x-real-ip) ~ allowed) { + set req.http.x-real-ip = remoteip.get(req.http.X-Forwarded-For); + if (std.ip(req.http.x-real-ip) ~ allowed) { ... } } Installation ------------ diff --git a/src/vmod_remoteip.vcc b/src/vmod_remoteip.vcc index b46aef5..55b161e 100644 --- a/src/vmod_remoteip.vcc +++ b/src/vmod_remoteip.vcc @@ -45,13 +45,13 @@ EXAMPLE sub vcl_init { remoteip.init("192.0.2.1, 127.0.0.0/8"); } sub vcl_recv { - set resp.http.x-real-ip = remoteip.get(resp.http.X-Forwarded-For); + set req.http.x-real-ip = remoteip.get(req.http.X-Forwarded-For); ... } COPYRIGHT ========= |