Varnish not Caching Requests
I’am developing video-stream api. I need to cache my videos buffer. So I decided to use Varnish to cache my video datas. My backend coded with node.js express. Varnish running for proxy. But responses not caching in Varnish. My docker-compose.yml version: ‘3.9’ services: varnish: image: varnish:stable container_name: varnish restart: always tmpfs: – /var/lib/varnish:exec ports: -… Read More Varnish not Caching Requests