-
-
Notifications
You must be signed in to change notification settings - Fork 599
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
Nginx rpm install doesn't support chunkin module #38
Comments
Chris, sorry it took me so long to answer. From the description, it sounds tricky, as it really means a custom Nginx installation. I think we should support people who want to install their own Nginx by whatever means, and then just provide the proxy config: that would mean splitting the attribute/recipe in two -- sounds something doable and worth doing. |
Hi, this has slipped me -- the current cookbook version has the |
Thank you! The quality of work here is excellent. |
Thanks! |
This isn't really your issue, but I wanted to let you know and get your thoughts.
Here is where I am at.
I setup a node with this cookbook, and I setup nginx as a proxy to get basic auth.
My use case is that I want Hubot to push chat logs into elastic search
https://gist.github.com/4050748 # Work In Progress
The issue is that node seems to like streaming requests and doesn't set the
Content-Length
header.This makes Nginx do the following
It seems like this would be a fairly common use case, which is why I am bringing this to you.
The work around
Currently, I am hand coding the json into a string, and setting the
Content-Length
header, which is ugly but working.Alternatives?
http://www.lamnk.com/blog/computer/fix-nginx-411-length-required-error/
suggests compiling with the chunkin module, but then that goes back to community nginx. It was cleaned up a bit a few days ago, but it is still a pretty heavy dependency.
What are your thoughts or suggestions?
Thank You
Chris Lundquist
The text was updated successfully, but these errors were encountered: