From 7d20871f0d7dc54a51261d2f287a42f01268abfa Mon Sep 17 00:00:00 2001 From: Timo Reimann Date: Fri, 3 Mar 2017 00:27:33 +0100 Subject: [PATCH] Fix typos. --- docs/basics.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/basics.md b/docs/basics.md index 7595851fd..787604451 100644 --- a/docs/basics.md +++ b/docs/basics.md @@ -85,9 +85,9 @@ Frontends can be defined using the following rules: - `PathStrip`: Same as `Path` but strip the given prefix from the request URL's Path. - `PathPrefix`: PathPrefix adds a matcher for the URL path prefixes. This matches if the given template is a prefix of the full URL path. - `PathPrefixStrip`: Same as `PathPrefix` but strip the given prefix from the request URL's Path. -- `AddPrefix`: Add prefix from the request URL's Path. +- `AddPrefix`: Add prefix to the request URL's Path. -You can use multlple values for a rule by separating them with `,`. +You can use multiple values for a rule by separating them with `,`. You can use multiple rules by separating them by `;`. You can optionally enable `passHostHeader` to forward client `Host` header to the backend.