From 227b9a3dba547cf7d7a53bfb2364e3036538f69c Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Sun, 7 May 2017 10:15:02 +0200 Subject: [PATCH] Updated Proxying (markdown) --- Proxying.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Proxying.md b/Proxying.md index 71bd154..9cfb639 100644 --- a/Proxying.md +++ b/Proxying.md @@ -7,11 +7,11 @@ The following code will proxy all GET requests made to http://:/othe server .Given( Request.Create() - .WithPath("/other/service") + .WithPath("/google") ) .RespondWith( Response.Create() - .WithProxy("http://otherhost.com/approot") + .WithProxy("http://www.google.com") ); ```