-
|
I didn't realize miniflux supported media proxy untill I saw this issue. Looking at the default configuration, images should be proxied. But I don't see them proxied in dev tools. E.g. Post: https://blog.cloudflare.com/bgp-route-leak-venezuela/ |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Hi! The reason you aren't seeing images proxied is likely because the default behavior is HTTP-only. By default, Miniflux sets To force Miniflux to proxy everything (for privacy or to avoid hotlink protection), you need to change the mode to I also highly recommend generating a static Add these two lines to your # Proxy ALL images (SSL and non-SSL)
MEDIA_PROXY_MODE=all
# Set a permanent key so image links don't break after a server restart
# You can generate a random one with: openssl rand -base64 32
MEDIA_PROXY_PRIVATE_KEY=your_generated_secret_key_here
Hope that helps! |
Beta Was this translation helpful? Give feedback.
Hi! The reason you aren't seeing images proxied is likely because the default behavior is HTTP-only.
By default, Miniflux sets
MEDIA_PROXY_MODE=http-only. This means it only proxies images served over insecure HTTP (to prevent "Mixed Content" warnings in your browser). Since most the web (including the blog post you linked) now serves images over HTTPS, Miniflux leaves them alone and lets your browser load them directly.To force Miniflux to proxy everything (for privacy or to avoid hotlink protection), you need to change the mode to
all.I also highly recommend generating a static
MEDIA_PROXY_PRIVATE_KEY. If you don't, Miniflux generates a random one every time it restarts, which will br…