We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a stray semicolon in an example. 'localhost:3002': => { should be 'localhost:3002' => {
'localhost:3002': => {
'localhost:3002' => {
puppet parser validate /tmp/typo.pp Error: Could not parse for environment production: Syntax error at ':' (file: /tmp/typo.pp, line: 13, column: 21) cat /tmp/typo.pp nginx::resource::upstream { 'puppet_rack_app': members => { 'localhost:3000' => { server => 'localhost', port => 3000, weight => 1, }, 'localhost:3001' => { server => 'localhost', port => 3001, weight => 1, }, 'localhost:3002': => { server => 'localhost', port => 3002, weight => 2, }, }, } nginx::resource::server { 'rack.puppetlabs.com': proxy => 'http://puppet_rack_app', }
The text was updated successfully, but these errors were encountered:
Thanks for pointing this out! Could you please send a pull request. This can be done entirely through the browser - https://github.com/voxpupuli/puppet-nginx/edit/master/README.md
Sorry, something went wrong.
For reference: #1391
No branches or pull requests
There is a stray semicolon in an example.
'localhost:3002': => {
should be'localhost:3002' => {
Affected Puppet, Ruby, OS and module versions/distributions
How to reproduce (e.g Puppet code you use)
The text was updated successfully, but these errors were encountered: