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
https://github.com/engineyard/ey-cookbooks-stable-v6/blob/next-release/cookbooks/haproxy/recipes/configure.rb#L45
haproxy_httpchk_host = app.vhosts.first.domain_name.empty? ? nil : app.vhosts.first.domain_name
This line configures HAProxy to use the domain name configured in the app's vhost, but the documentation for Domain Name states:
Domain Name
Enter comma-separated values. Wildcards and regular expressions are allowed.
In practice, this value is a list of space-separated strings intended for the nginx server_name directive, which can include regexes.
I'm not sure how the HAProxy recipe should deal with regex values, but at least it should check for _ and handle multiple values appropriately.
_
The text was updated successfully, but these errors were encountered:
This issue has (finally!) been prioritized and the fix will be part of the next release, aimed at happening during the current month.
Sorry, something went wrong.
No branches or pull requests
https://github.com/engineyard/ey-cookbooks-stable-v6/blob/next-release/cookbooks/haproxy/recipes/configure.rb#L45
This line configures HAProxy to use the domain name configured in the app's vhost, but the documentation for
Domain Name
states:In practice, this value is a list of space-separated strings intended for the nginx server_name directive, which can include regexes.
I'm not sure how the HAProxy recipe should deal with regex values, but at least it should check for
_
and handle multiple values appropriately.The text was updated successfully, but these errors were encountered: