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
Hi There
When I call nginx like so:
class { "nginx": worker_connections => 4096, keepalive_timeout => 30s, client_max_body_size => 40M, }
I get
Error 400 on SERVER: Invalid parameter worker_connections
It was working previously. Any idea what would be going on here?
Thanks Sam
The text was updated successfully, but these errors were encountered:
Not correct use directive in configuration Need put in section events:
events { worker_connections 2048; use kqueue; # i have BSD :) }
Sorry, something went wrong.
That example is taken directly from the readme. If I do:
class { "nginx": template => 'nginx/conf.d/magento_nginx.conf.erb', }
I get Invalid parameter template
No branches or pull requests
Hi There
When I call nginx like so:
class { "nginx":
worker_connections => 4096,
keepalive_timeout => 30s,
client_max_body_size => 40M,
}
I get
Error 400 on SERVER: Invalid parameter worker_connections
It was working previously. Any idea what would be going on here?
Thanks
Sam
The text was updated successfully, but these errors were encountered: