Skip to content

Commit

Permalink
purge trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Feb 1, 2019
1 parent 7add09e commit 7ed4988
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Setting up a simple static webserver is straightforward, but is usually not the
server => 'www.myhost.com'
}
```
This will proxy any requests made to `http://www.myhost.com/blog` to the URL `http://192.168.99.1/`. Pay special attention to the use of `/` at the end of the URL we are proxying to - that will allow your query parameters or subfolder structure on your secondary webserver to remain intact.
This will proxy any requests made to `http://www.myhost.com/blog` to the URL `http://192.168.99.1/`. Pay special attention to the use of `/` at the end of the URL we are proxying to - that will allow your query parameters or subfolder structure on your secondary webserver to remain intact.

### Defining Backend Resources

Expand All @@ -52,7 +52,7 @@ We can expand on these simple proxies by defining *upstream* resources for our w
}
```
This will define an upstream resource with our server IP of `192.168.99.1`. To use the upstream in our previous proxy, modify the location block as follows:

```
nginx::resource::location{'/blog':
proxy => 'http://upstream_app/' ,
Expand Down Expand Up @@ -87,7 +87,7 @@ Combining our configurations above into a single manifest, our code block looks
server => 'www.myhost.com',
}
```
```

In summary, this Puppet code block will:
* Install the latest version of nginx from the 'mainline' nginx distribution.
Expand Down

0 comments on commit 7ed4988

Please sign in to comment.