elli
elli copied to clipboard
Simple, robust and performant Erlang web server
The current spec is: ``` %% @doc Stop `Server'. -spec stop(Server :: atom()) -> {stop, normal, ok, state()}. stop(S) -> gen_server:call(S, stop). ``` Shouldn't it be just: ``` -spec stop(Server...
Close #94 (and #100). If possible, I would like to address/include: - #38 (I think we just need to make sure the docs get published correctly) - #93 merged -...
when implementing my handle function on localhost, I was hoping to be able to utilize `scheme`, `host`, and `port`. I keep getting `undefined`. I admittedly am not super slick with...
Pass all the supplied Opts, Erlang SSL will pick out only what it needs / understands. Don't discard other options user intends to pass for SSL config
Good Day, Should we get `request_timeout `on completed requests? For example, a fetch is issued to an endpoint, and it returns successfully with a `[200, data]` We still receive a...
There are several optional setting that could be passed along to the underlying erlang ssl system: https://elixirforum.com/t/making-ssl-tests-all-pass-for-phoenix-lets-encrypt/3507/15 ``` https: [ port: System.get_env("APP_HTTPS_PORT") || "${APP_HTTPS_PORT}", keyfile: System.get_env("APP_SSL_KEY_PATH") || "${APP_SSL_KEY_PATH}", certfile: System.get_env("APP_SSL_CERT_PATH")...
A few quick benchmarks just on my laptop with `wrk` showed a consistent improvement over use of `recv`. I'd like to try some more values of `n` including `{active, once}`...
It's be great to have HTTP2 support in Elli! This seems like quite an ambitious addition but I thought I'd open an issue anyway :)