Tan Jay Jun

Results 31 comments of Tan Jay Jun

When I bump ```dockerfile FROM elixir:1.9.2-slim AS build ... FROM erlang:22-slim AS app ``` to `elixir:1.10.1-slim`, my containers fail with ``` /app/erts-10.6.4/bin/beam.smp: error while loading shared libraries: libtinfo.so.6: cannot open...

@GBH I would love to read a detailed blog post on your strategy.

Unfortunately not at the moment because I don’t have the bandwidth to learn Tesla internals, Mint and HTTP/2 enough to do a good job.

To Postgrex users, I had to add the same magic sauce too. ```elixir config :my_app, MyApp.Repo, ssl: true, ssl_opts: [ verify: :verify_peer, cacerts: [database_ca_cert], server_name_indication: '#{database_hostname}', customize_hostname_check: [ match_fun: :public_key.pkix_verify_hostname_match_fun(:https)...

@msaraiva Cool, my fork was deleted. Anyway, it’s all back up on GitHub. Let me know if you need a new pull request.

Rebased and pushed.

CloudFlare found gzip still works better for smaller files so > Our Brotli module has a minimal size setting for Brotli compression that allows us to use gzip for smaller...

We’re only concerned with on-demand compression support, since Traefik cannot serve static files. Pre-compressed support would require Traefik to be a web server. I should clarify “first to market” built-in...

According to https://community.centminmod.com/threads/revert-ngx_brotli-auto-enable-for-intel-skylake-cpus-in-123-09beta01.16661/, apparently not. > The incorrect assumption was that brotli_min_length from 1000 to 65536 bytes change would switch to gzip compression if file was under 65536 bytes in...

To be clear, I’m not a Traefik maintainer, just a normal user. I don’t decide what features Traefik get. Secondly, I did not say Traefik should not have caching. I...