Geoffroy Couprie
Geoffroy Couprie
Right now, installing the proxy requires downloading rustup and installing the proxy through `cargo install sozu`, but we need a good packaging option for most Linux distributions. As usual, whenever...
I'd like to integrate [wirefilter](https://github.com/cloudflare/wirefilter) (or other solutions if we find better ones) to have small, fast filters deployable at runtime. These would be typically used for quick fixes, incident...
I would like to introduce wasm plugins at these points: - main process, for small tasks that can change the configuration (talking to a service discovery, etc) - routing filter,...
right now sozu evaluates the health of a backend server from TCP connections (if we cannot connect, we retry, then there's a circuit breaker after a while). We should be...
in some cases we might want to limit the number of concurrent connections to an application or backend, and reject other connections
In gitlab by @Geal on Jan 7, 2016, 16:39
In gitlab by @Geal on Dec 5, 2016, 18:13 The approach using an enum worked quite well to separate the various steps in parsing headers, but now it needs to...
In gitlab by @Geal on Jul 25, 2016, 12:55 the servo project uses https://github.com/servo/gaol and https://github.com/servo/ipc-channel to communicate between the broker and the worker processes. We could have the main...
Right now, sozu checks that the hostname coming from the TLS SNI and the one coming from HTTP's Host header are the same. [Domain fronting](https://en.wikipedia.org/wiki/Domain_fronting) is a bug of some...
right now we only support randomization: https://github.com/sozu-proxy/sozu/blob/master/lib/src/network/backends.rs#L183-L193