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; +} ```