├── .alpine ├── .github ├── actions │ ├── action.yml │ └── release.sh └── workflows │ └── workflow.yml ├── .gitignore ├── Dockerfile ├── GeoIP.dat.gz ├── LICENSE.md ├── Makefile ├── README.md ├── bin └── actions.mk ├── docker-entrypoint.sh ├── patches └── 6 │ ├── musl-include-vpf.patch │ └── musl-include-vsb.patch ├── templates ├── default.vcl.tmpl ├── defaults │ ├── vcl_backend_error.vcl.tmpl │ ├── vcl_backend_response.vcl.tmpl │ ├── vcl_deliver.vcl.tmpl │ ├── vcl_hash.vcl.tmpl │ ├── vcl_hit.vcl.tmpl │ ├── vcl_miss.vcl.tmpl │ ├── vcl_pipe.vcl.tmpl │ └── vcl_recv.vcl.tmpl ├── includes │ ├── backend.vcl.tmpl │ ├── mobile.vcl.tmpl │ ├── purge.vcl.tmpl │ └── static.vcl.tmpl ├── presets │ ├── drupal.vcl.tmpl │ └── wordpress.vcl.tmpl └── varnishd.init.d.tmpl └── tests ├── basic ├── compose.yml └── run.sh ├── drupal ├── compose.yml └── run.sh └── wordpress ├── compose.yml └── run.sh /.alpine: -------------------------------------------------------------------------------- 1 | 3.22#2025-10-25T04:42:51.822311Z -------------------------------------------------------------------------------- /.github/actions/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/.github/actions/action.yml -------------------------------------------------------------------------------- /.github/actions/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/.github/actions/release.sh -------------------------------------------------------------------------------- /.github/workflows/workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/.github/workflows/workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/Dockerfile -------------------------------------------------------------------------------- /GeoIP.dat.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/GeoIP.dat.gz -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/README.md -------------------------------------------------------------------------------- /bin/actions.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/bin/actions.mk -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /patches/6/musl-include-vpf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/patches/6/musl-include-vpf.patch -------------------------------------------------------------------------------- /patches/6/musl-include-vsb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/patches/6/musl-include-vsb.patch -------------------------------------------------------------------------------- /templates/default.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/default.vcl.tmpl -------------------------------------------------------------------------------- /templates/defaults/vcl_backend_error.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/defaults/vcl_backend_error.vcl.tmpl -------------------------------------------------------------------------------- /templates/defaults/vcl_backend_response.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/defaults/vcl_backend_response.vcl.tmpl -------------------------------------------------------------------------------- /templates/defaults/vcl_deliver.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/defaults/vcl_deliver.vcl.tmpl -------------------------------------------------------------------------------- /templates/defaults/vcl_hash.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/defaults/vcl_hash.vcl.tmpl -------------------------------------------------------------------------------- /templates/defaults/vcl_hit.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/defaults/vcl_hit.vcl.tmpl -------------------------------------------------------------------------------- /templates/defaults/vcl_miss.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/defaults/vcl_miss.vcl.tmpl -------------------------------------------------------------------------------- /templates/defaults/vcl_pipe.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/defaults/vcl_pipe.vcl.tmpl -------------------------------------------------------------------------------- /templates/defaults/vcl_recv.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/defaults/vcl_recv.vcl.tmpl -------------------------------------------------------------------------------- /templates/includes/backend.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/includes/backend.vcl.tmpl -------------------------------------------------------------------------------- /templates/includes/mobile.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/includes/mobile.vcl.tmpl -------------------------------------------------------------------------------- /templates/includes/purge.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/includes/purge.vcl.tmpl -------------------------------------------------------------------------------- /templates/includes/static.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/includes/static.vcl.tmpl -------------------------------------------------------------------------------- /templates/presets/drupal.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/presets/drupal.vcl.tmpl -------------------------------------------------------------------------------- /templates/presets/wordpress.vcl.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/presets/wordpress.vcl.tmpl -------------------------------------------------------------------------------- /templates/varnishd.init.d.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/templates/varnishd.init.d.tmpl -------------------------------------------------------------------------------- /tests/basic/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/tests/basic/compose.yml -------------------------------------------------------------------------------- /tests/basic/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/tests/basic/run.sh -------------------------------------------------------------------------------- /tests/drupal/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/tests/drupal/compose.yml -------------------------------------------------------------------------------- /tests/drupal/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/tests/drupal/run.sh -------------------------------------------------------------------------------- /tests/wordpress/compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/tests/wordpress/compose.yml -------------------------------------------------------------------------------- /tests/wordpress/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wodby/varnish/HEAD/tests/wordpress/run.sh --------------------------------------------------------------------------------