-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
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
Not possible to specify some configuration key multiple times. #5
Comments
I have made pullrequest that correct this problem : #3 |
@jdauphant wow, thanks! |
Is this fix going in anytime soon? I ran into a similar issue configuring SSL. I would love to be able to use Nginx's ability to configure both http and https ports in one server directive like so:
|
I guess I should switch to using this role? |
Yes I have fix that in my role :) |
Just got hit by this as well. Will switch to @jdauphant's role. Hoping it's an easy switch over. I do note that Ubuntu is not mentioned in the "Supported Platform's" list: https://galaxy.ansible.com/detail#/role/466 Thank you! 😄 |
Example is the
proxy_set_header
that should allows us to adds multiple headers to requests. This fails due to the nature of YML — when specifying multiple keys the last entry simply overrides it.Example in YML:
Resulting configuration output:
See also: http://wiki.nginx.org/HttpProxyModule
The text was updated successfully, but these errors were encountered: