Browse Source

Merge pull request #752 from alexharv074/Issue_751

Issue 751 Add an example for a simple reverse proxy to the README
James Fryman 8 years ago
parent
commit
adbb76a985
1 changed files with 11 additions and 5 deletions
  1. 11 5
      README.markdown

+ 11 - 5
README.markdown

@@ -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