ledge icon indicating copy to clipboard operation
ledge copied to clipboard

An RFC compliant and ESI capable HTTP cache for Nginx / OpenResty, backed by Redis

Results 15 ledge issues
Sort by recently updated
recently updated
newest added

I noticed that from time to time I get wrong responses to my HTTP requests. In one of our UI's some users all of a sudden would get HTML responses...

With the following config, I consistently see a `Connection refused` error: ``` 2020-07-16T20:16:37Z service/web/web-cc7d6bd9c-g2hqr 2020/07/16 20:16:37 [error] 13#13: *881 connect() failed (111: Connection refused), client: 10.10.10.2, server: _, request: "GET...

Hi there! Thanks so much for all the hard work on ledge. Can I ask, where are released being cut to? The latest I can find on OPM is `2.1.2`....

I'm trying to use offloaded SSL traffic with ESI. Handler config: ``` require("ledge").set_handler_defaults({ upstream_host = "127.0.0.2", upstream_port = 80, advertise_ledge = false, upstream_use_ssl = false, }) ``` While trying to...

Simplifies a number of sentences, cleans up redundant wording, fixes a number of spelling errors and introduces further consistency when mentioning constants such as HIT and MISS.

When installing Ledge through OPM or Luarocks both result in the following error. ``` nginx: [error] init_by_lua error: /usr/local/openresty/site/lualib/ffi-zlib.lua:98: libz.so: cannot open shared object file: No such file or directory...

Hello, I was looking for a specific type of behaviour in a cache system for nginx. Specially, I want this behaviour. Request 1) Web-client GET /foo Nginx: Forward to origin...

Rockspec is very outdated. Because of that - steps from documentation does not work as luarocks installs version 1.28, so configuration example is not valid for this version.

As the [doc](https://github.com/pintsized/ledge#storage_driver), `connect` should return a `bool`. So the line https://github.com/pintsized/ledge/blob/2474cab721dc300b1dbc6ba40121283ba44bea47/lib/ledge.lua#L228 should be replaced by `return driver, nil;` And the `bool new()` on the doc should be change. While...