cowboy icon indicating copy to clipboard operation
cowboy copied to clipboard

Small, fast, modern HTTP server for Erlang/OTP.

Results 114 cowboy issues
Sort by recently updated
recently updated
newest added

### Issues 1. Only the `forward` mode appears to have ever been used throughout cowboy. The support for `reverse` and `format_error` seems to be lacking 2. Matching of repeating parameters...

Translate Readme.asciidoc into Simplified Chinese for Chinese users

For reading a multipart message where the part is a file :- this line below leads to a badmap error after the last chunk has been read. So the functionality...

The [subprotocol example](https://ninenines.eu/docs/en/cowboy/2.9/guide/ws_handlers/#_subprotocol) in the Cowboy documentation doesn't work. Calling cowboy_req:parse_header(, Req0) returns a list of binaries, and not a tuple list, so calling lists:keymember/3 on it won't work.

### echo_post example Fixed the input value of the function. `cowboy_req:reply` function.

I have a server that regularly receives relatively large requests, and it would be very helpful if Cowboy accepted compressed requests. Perhaps look for a `Content-Encoding: gzip` request header, and...

Feature request

See https://github.com/erlang/otp/pull/5831 for details as to why it's faster to do that. Might not be worth doing in many parts of Cowboy, but some like Websocket or the loop handlers...

At: https://ninenines.eu/docs/en/cowboy/2.9/manual/cowboy_req.parse_qs/

Currently, the time required to send a response is counted as idle, and as a result if it takes more than one minute (by default) the idle timeout kills the...