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

* The default behavior (sending data is considered being idle) is maintained. * There is a new protocol option for http and http2 which makes the idle timeout be reset...

I'm returning to this issue again: https://github.com/ninenines/cowboy/issues/1433 I thought I had it working, but for some time now it has not. I've tried increasing the values in max_received_frame_rate, but the...

One of the request is sending double slash in the API like this api/v1//test. I added the route for the same, but when I make a request using curl for...

Hi! I can't find any way to neither be informed about new connections - nor any possibility to update the initial state of a path handler. Is there no way...

Was facing this issue in Pleroma [pleroma/pleroma#2029](https://git.pleroma.social/pleroma/pleroma/-/issues/2029) where all 204 responses suddenly started returning 500 on the latest Cowboy. Basically, this code in Phoenix, with the default Jason encoder, no...

I've been experimenting with CONNECT to write a proxy server: https://github.com/zuiderkwast/deputy. (Is the name Deputy already taken or reserved for something else in the Cowboy world?) I've tested it only...

The function `prepare_data/6` may call `maybe_terminate_stream/3` and send an `RST_STREAM` before returning and sending the data buffered. The stream should be terminated AFTER we flush the buffer.

gen_server/gen_statem/receive have features where you can setup an automatic event to fire after a certain period of inactivity. This would be convenient in cowboy_loop to implement idle messages to keep...

The documentation for `generate_etag` says: Result :: binary() | {weak | strong, binary()} Default - no etag value I think it should be: Result :: undefined | binary() | {weak...

See http://blog.erlang.org/ssl-logging-in-otp-22/ for a full description. One could enable debug logging in Cowboy to see all the packets transmitted and what Cowboy thinks of them, something like that. Could make...