L. Pereira

Results 285 comments of L. Pereira

The concurrency design is explained here: https://tia.mat.br/posts/2014/10/06/life_of_a_http_request.html As far as the URL map goes: it does not (it only matches prefixes), but you can use the rewrite module: ``` &blog_post...

It's possible to create a module with r3 to match URLs, yes. You can start by looking at the rewrite module (src/lib/lwan-mod-rewrite.c).

Maybe use the frontend part from https://github.com/alexazhou/VeryNginx

Hi -- sorry for taking so long to reply. No, there's no WebSocket client built-in. It should now be possible to create one (since it's now possible for a request...

I've considered changing it to LGPL, yes -- it's GPL at this moment as it wasn't meant to be a library but rather a standalone program. I might change if...

As I got special permission from my employer to work on this project during my free time, changing the license isn't just the matter of using a `sed` script; I...

The reason Lwan started out was to understand how a proprietary web server worked. Allowing it to turn it into proprietary code would be completely against the very same principle...

@mariopal Unless you're distributing the binary, there's no need to supply the source code of your application if all your users do is interact with it through HTTP. It's only...

I apologize for not seeing this issue before. That script is unfortunately out-of-date; it should be adapted to use [this rewrite](https://github.com/gstrauss/weighttp/tree/rewrite), which has a JSON output and fixes a bunch...

This is pretty curious. Are you testing it directly or over some proxy? Have you looked at the raw headers before we parse them? The Upgrade method is necessary for...