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

just like: http://127.0.0.1/ redirect to: http://127.0.0.1/index.html

Shall compression work also for files served by `cowboy_static`? The cowboy_compress_h.erl:98 says *We do not compress sendfile bodies.* Is this related to what `cowboy_static` does? (Because in my environment REST...

After working on some rest handlers for PATCH requests, I noticed that only PUT requests go through the is_conflict function and as such can return a 409. I wasn't sure...

Getting error in Cowboy. Is this something you have seen before or should I investigate? Setup is Cowboy and Gun connected over several days and lots of websocket messages. 23:12:05.145...

Refactoring

Can take inspiration from http://ezgr.net/increasing-security-erlang-ssl-cowboy/ for example.

Feature request

To make it easier to deal with different implementations (like Gun). https://github.com/ninenines/cowboy/pull/1287#event-1659654509

The following steps remain to be done: * get_modules need to be implemented. Problem is OTP doesn't allow supervisors to have a dynamic list of modules. * format_status and proper...

For example if `info/3` is not defined Cowboy will loop trying to inform the stream handler about a 500 response over and over. This applies to both `cowboy_http` and `cowboy_http2`....

Bug

This [page](https://ninenines.eu/docs/en/cowboy/2.2/manual/cowboy.start_clear/) links to a missing [page](https://ninenines.eu/docs/en/cowboy/2.2/manual/ranch_tcp).

Currently we accumulate everything and give the handler the resulting data. We may want to allow handlers to get fragments directly and decide what to do (like stream the contents...