Merge pull request #752 from alexharv074/Issue_751

Issue 751 Add an example for a simple reverse proxy to the README
This commit is contained in:
James Fryman 2016-01-28 06:57:43 -06:00
commit adbb76a985

View file

@ -33,7 +33,16 @@ This module manages NGINX configuration.
class { 'nginx': }
```
### Creating a new virtual host
### A simple reverse proxy
```puppet
nginx::resource::vhost { 'kibana.myhost.com':
listen_port => 80,
proxy => 'http://localhost:5601',
}
```
### A virtual host with static content
```puppet
nginx::resource::vhost { 'www.puppetlabs.com':
@ -41,7 +50,7 @@ nginx::resource::vhost { 'www.puppetlabs.com':
}
```
### Add a Proxy Server
### A more complex proxy example
```puppet
nginx::resource::upstream { 'puppet_rack_app':
@ -57,9 +66,6 @@ nginx::resource::vhost { 'rack.puppetlabs.com':
}
```
### Add a smtp proxy
```puppet