Issue_751 Add simple reverse proxy example to README
This commit is contained in:
parent
0e3cddcd8d
commit
719832cb28
1 changed files with 11 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue