Paulo Coghi

Results 149 comments of Paulo Coghi

If there is something that I can do to help, like testing different code samples and providing the results, it will be a pleasure for me anytime and when you...

Your knowledge is way above what I can understand right now, but when the project gets its pace, if I understand it better, maybe I will be able to help...

Looking into the security headers on Traefik documentation and examples ([here](https://doc.traefik.io/traefik/middlewares/http/headers/#using-security-headers)), as well as this user [suggestion](https://community.traefik.io/t/activate-hsts-toml/13511), this could be one idea: ```toml [http.exampleContext] [http.exampleContext.security.headers] forceSTSHeader = true stsIncludeSubdomains =...

But I don't like the idea of `forceSTSHeader` but, instead, something simpler like `STSHeader`

_(I'm not a maintainer, just a user)_ If Sozu provides comparisons with Nginx, it will be easier to know which is faster, since `rpxy` is currently ~1.5x faster than Nginx....

A common strategy used on Nginx is using `$scheme$request_method$host$request_uri` as the cache filename format. Optionally, since some sites provide different versions for mobile and desktop, a more elaborate strategy is:...

Issue solved by merging https://github.com/junkurihara/rust-rpxy/pull/127 :tada:

> They do have a [Dockerfile](https://github.com/sozu-proxy/sozu/blob/main/Dockerfile), so it may be fairly straightforward to set up a new benchmark from the code in the bench/ directory of this repo. It would...

Just wow! Not only the latency with `rpxy` remains lower than Nginx (22% to 42% lower latency), but now the total req/s is 1.7x faster!

Would be interesting if @lukehsiao could help us doing the test in his computer. What do you think, Luke?