From 3d58dd3678bd7eb440cc88571da3a65ba4afd7be Mon Sep 17 00:00:00 2001 From: kayos Date: Fri, 11 Jun 2021 17:48:01 -0700 Subject: [PATCH] fix readme --- README.md | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 46bbad6..ced560f 100644 --- a/README.md +++ b/README.md @@ -15,16 +15,17 @@ Live example: D ## Example Web Server Config (nginx) ``` - location '/robots.txt' { - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_pass http://127.0.0.1:8080$request_uri; - } - location '/wp-login.php' { - proxy_set_header Host $host; - proxy_set_header X-Real-IP $remote_addr; - proxy_pass http://127.0.0.1:8080$request_uri; - } +location '/robots.txt' { + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_pass http://127.0.0.1:8080$request_uri; +} + +location '/wp-login.php' { + proxy_set_header Host $host; + proxy_set_header X-Real-IP $remote_addr; + proxy_pass http://127.0.0.1:8080$request_uri; +} ```