imageproxy icon indicating copy to clipboard operation
imageproxy copied to clipboard

A caching, resizing image proxy written in Go

Results 123 imageproxy issues
Sort by recently updated
recently updated
newest added

I needed some kind of TTL for the URL, so it is possible to expire public URLs to an image, so passing image URLs around and requesting the image is...

Hi, thank you for this project. I been testing this project in kubernetes with 100/200 Req/sec and with invalid status code (> 299) there are some problems with the memory...

When a search bot requests many images at the same time and these images are not in the cache, all transformation goroutines start in parallel causing the huge memory allocation,...

I think this logo would be a good fit for your project, if you decide to use it, I will be glad

This PR adds UNIX domain socket support for the addr option. I want this as I run all my services behind nginx with unix domain socket. I suppose there are...

Presenting large images to ImageProxy that need transformations will cause ImageProxy to crash in some environments, resulting in a DoS attack -- https://gist.github.com/blakestoddard/a2cb5b98eaf335f0f474fcd09c1a751b using https://a.uguu.se/cGlgezGk.jpg (temp link that will expire,...

Image content returned from the initial request will have its `Content-Type` verified at https://github.com/willnorris/imageproxy/blob/main/imageproxy.go#L243. Prefilling the `Accept` header with the list of accepted `Content-Type`'s has proven troublesome for some of...

First pass at adding JSON log output support + traceable transaction IDs (in the form of a UUID-based `X-Request-ID`) that allows you to tie _most_ log lines to a given...

## This PR: Gives user the option to override the remote image hosting's expire date. ``` imageproxy -override-cache-control="public" -override-expires="Sat, 28 Dec 2199 04:09:32 GMT" ``` closes https://github.com/willnorris/imageproxy/issues/207

Scaling by factor was only possible to scale down, as width & height : - between 0 and 1 where considered as scale down factor - greater than 1 was...