├── .github ├── pull_request_template.md └── workflows │ └── default.yml ├── .gitignore ├── .rspec ├── .rubocop.yml ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── LICENCE ├── README.md ├── Rakefile ├── ab_tests └── ab_tests.yaml ├── configs └── dictionaries │ ├── ab_test_expiries.yaml │ ├── active_ab_tests.yaml │ ├── bankholidaystest_percentages.yaml │ ├── essixpointseven_percentages.yaml │ └── example_percentages.yaml ├── deploy-bouncer.sh ├── deploy-dictionaries.sh ├── deploy-service.sh ├── deploy_bouncer ├── deploy_dictionaries ├── deploy_service ├── fastly.yaml ├── lib ├── deploy_base.rb ├── deploy_bouncer.rb ├── deploy_dictionaries.rb ├── deploy_service.rb ├── govuk_fastly.rb ├── render_template.rb └── requires.rb ├── spec ├── deploy_bouncer_spec.rb ├── deploy_dictionaries_spec.rb ├── deploy_service_spec.rb ├── fixtures │ ├── _multivariate_tests.vcl.erb.out │ ├── fastly-get-service-response-inactive-versions.json │ ├── fastly-get-service-response.json │ ├── fastly-get-settings.json │ ├── fastly-post-vcl.json │ └── fastly-put-clone.json ├── render_template_spec.rb ├── spec_helper.rb ├── test-outputs │ ├── apt-integration.out.vcl │ ├── apt-production.out.vcl │ ├── apt-staging.out.vcl │ ├── apt-test.out.vcl │ ├── assets-eks-integration.out.vcl │ ├── assets-eks-production.out.vcl │ ├── assets-eks-staging.out.vcl │ ├── assets-eks-test.out.vcl │ ├── assets-integration.out.vcl │ ├── assets-production.out.vcl │ ├── assets-staging.out.vcl │ ├── assets-test.out.vcl │ ├── bouncer-integration.out.vcl │ ├── bouncer-production.out.vcl │ ├── bouncer-staging.out.vcl │ ├── bouncer-test.out.vcl │ ├── mirror-integration.out.vcl │ ├── mirror-production.out.vcl │ ├── mirror-staging.out.vcl │ ├── mirror-test.out.vcl │ ├── performanceplatform-integration.out.vcl │ ├── performanceplatform-production.out.vcl │ ├── performanceplatform-staging.out.vcl │ ├── performanceplatform-test.out.vcl │ ├── servicegovuk-integration.out.vcl │ ├── servicegovuk-production.out.vcl │ ├── servicegovuk-staging.out.vcl │ ├── servicegovuk-test.out.vcl │ ├── tldredirect-integration.out.vcl │ ├── tldredirect-production.out.vcl │ ├── tldredirect-staging.out.vcl │ ├── tldredirect-test.out.vcl │ ├── www-eks-integration.out.vcl │ ├── www-eks-production.out.vcl │ ├── www-eks-staging.out.vcl │ ├── www-eks-test.out.vcl │ ├── www-integration.out.vcl │ ├── www-production.out.vcl │ ├── www-staging.out.vcl │ └── www-test.out.vcl ├── vcl_generation_spec.rb └── www_vcl_erb_spec.rb └── vcl_templates ├── .gitkeep ├── _boundary_headers.vcl.erb ├── _multivariate_tests.vcl.erb ├── _security_txt_request.vcl.erb ├── _security_txt_response.vcl.erb ├── apt.vcl.erb ├── assets-eks.vcl.erb ├── assets.vcl.erb ├── bouncer.vcl.erb ├── mirror.vcl.erb ├── servicegovuk.vcl.erb ├── test.vcl.erb ├── tldredirect.vcl.erb ├── www-eks.vcl.erb └── www.vcl.erb /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/.github/workflows/default.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_gem: 2 | rubocop-govuk: 3 | - config/default.yml 4 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.0 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/Rakefile -------------------------------------------------------------------------------- /ab_tests/ab_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/ab_tests/ab_tests.yaml -------------------------------------------------------------------------------- /configs/dictionaries/ab_test_expiries.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/configs/dictionaries/ab_test_expiries.yaml -------------------------------------------------------------------------------- /configs/dictionaries/active_ab_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/configs/dictionaries/active_ab_tests.yaml -------------------------------------------------------------------------------- /configs/dictionaries/bankholidaystest_percentages.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | A: 99 3 | B: 1 4 | -------------------------------------------------------------------------------- /configs/dictionaries/essixpointseven_percentages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/configs/dictionaries/essixpointseven_percentages.yaml -------------------------------------------------------------------------------- /configs/dictionaries/example_percentages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/configs/dictionaries/example_percentages.yaml -------------------------------------------------------------------------------- /deploy-bouncer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/deploy-bouncer.sh -------------------------------------------------------------------------------- /deploy-dictionaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/deploy-dictionaries.sh -------------------------------------------------------------------------------- /deploy-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/deploy-service.sh -------------------------------------------------------------------------------- /deploy_bouncer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/deploy_bouncer -------------------------------------------------------------------------------- /deploy_dictionaries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/deploy_dictionaries -------------------------------------------------------------------------------- /deploy_service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/deploy_service -------------------------------------------------------------------------------- /fastly.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/fastly.yaml -------------------------------------------------------------------------------- /lib/deploy_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/lib/deploy_base.rb -------------------------------------------------------------------------------- /lib/deploy_bouncer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/lib/deploy_bouncer.rb -------------------------------------------------------------------------------- /lib/deploy_dictionaries.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/lib/deploy_dictionaries.rb -------------------------------------------------------------------------------- /lib/deploy_service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/lib/deploy_service.rb -------------------------------------------------------------------------------- /lib/govuk_fastly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/lib/govuk_fastly.rb -------------------------------------------------------------------------------- /lib/render_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/lib/render_template.rb -------------------------------------------------------------------------------- /lib/requires.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/lib/requires.rb -------------------------------------------------------------------------------- /spec/deploy_bouncer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/deploy_bouncer_spec.rb -------------------------------------------------------------------------------- /spec/deploy_dictionaries_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/deploy_dictionaries_spec.rb -------------------------------------------------------------------------------- /spec/deploy_service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/deploy_service_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/_multivariate_tests.vcl.erb.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/fixtures/_multivariate_tests.vcl.erb.out -------------------------------------------------------------------------------- /spec/fixtures/fastly-get-service-response-inactive-versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/fixtures/fastly-get-service-response-inactive-versions.json -------------------------------------------------------------------------------- /spec/fixtures/fastly-get-service-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/fixtures/fastly-get-service-response.json -------------------------------------------------------------------------------- /spec/fixtures/fastly-get-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/fixtures/fastly-get-settings.json -------------------------------------------------------------------------------- /spec/fixtures/fastly-post-vcl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/fixtures/fastly-post-vcl.json -------------------------------------------------------------------------------- /spec/fixtures/fastly-put-clone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/fixtures/fastly-put-clone.json -------------------------------------------------------------------------------- /spec/render_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/render_template_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/test-outputs/apt-integration.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/apt-integration.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/apt-production.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/apt-production.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/apt-staging.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/apt-staging.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/apt-test.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/apt-test.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/assets-eks-integration.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/assets-eks-integration.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/assets-eks-production.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/assets-eks-production.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/assets-eks-staging.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/assets-eks-staging.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/assets-eks-test.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/assets-eks-test.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/assets-integration.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/assets-integration.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/assets-production.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/assets-production.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/assets-staging.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/assets-staging.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/assets-test.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/assets-test.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/bouncer-integration.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/bouncer-integration.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/bouncer-production.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/bouncer-production.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/bouncer-staging.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/bouncer-staging.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/bouncer-test.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/bouncer-test.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/mirror-integration.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/mirror-integration.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/mirror-production.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/mirror-production.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/mirror-staging.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/mirror-staging.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/mirror-test.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/mirror-test.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/performanceplatform-integration.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/performanceplatform-integration.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/performanceplatform-production.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/performanceplatform-production.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/performanceplatform-staging.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/performanceplatform-staging.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/performanceplatform-test.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/performanceplatform-test.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/servicegovuk-integration.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/servicegovuk-integration.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/servicegovuk-production.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/servicegovuk-production.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/servicegovuk-staging.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/servicegovuk-staging.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/servicegovuk-test.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/servicegovuk-test.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/tldredirect-integration.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/tldredirect-integration.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/tldredirect-production.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/tldredirect-production.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/tldredirect-staging.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/tldredirect-staging.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/tldredirect-test.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/tldredirect-test.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/www-eks-integration.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/www-eks-integration.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/www-eks-production.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/www-eks-production.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/www-eks-staging.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/www-eks-staging.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/www-eks-test.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/www-eks-test.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/www-integration.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/www-integration.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/www-production.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/www-production.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/www-staging.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/www-staging.out.vcl -------------------------------------------------------------------------------- /spec/test-outputs/www-test.out.vcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/test-outputs/www-test.out.vcl -------------------------------------------------------------------------------- /spec/vcl_generation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/vcl_generation_spec.rb -------------------------------------------------------------------------------- /spec/www_vcl_erb_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/spec/www_vcl_erb_spec.rb -------------------------------------------------------------------------------- /vcl_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vcl_templates/_boundary_headers.vcl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/vcl_templates/_boundary_headers.vcl.erb -------------------------------------------------------------------------------- /vcl_templates/_multivariate_tests.vcl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/vcl_templates/_multivariate_tests.vcl.erb -------------------------------------------------------------------------------- /vcl_templates/_security_txt_request.vcl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/vcl_templates/_security_txt_request.vcl.erb -------------------------------------------------------------------------------- /vcl_templates/_security_txt_response.vcl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/vcl_templates/_security_txt_response.vcl.erb -------------------------------------------------------------------------------- /vcl_templates/apt.vcl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/vcl_templates/apt.vcl.erb -------------------------------------------------------------------------------- /vcl_templates/assets-eks.vcl.erb: -------------------------------------------------------------------------------- 1 | assets.vcl.erb -------------------------------------------------------------------------------- /vcl_templates/assets.vcl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/vcl_templates/assets.vcl.erb -------------------------------------------------------------------------------- /vcl_templates/bouncer.vcl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/vcl_templates/bouncer.vcl.erb -------------------------------------------------------------------------------- /vcl_templates/mirror.vcl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/vcl_templates/mirror.vcl.erb -------------------------------------------------------------------------------- /vcl_templates/servicegovuk.vcl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/vcl_templates/servicegovuk.vcl.erb -------------------------------------------------------------------------------- /vcl_templates/test.vcl.erb: -------------------------------------------------------------------------------- 1 | <%= config %> 2 | -------------------------------------------------------------------------------- /vcl_templates/tldredirect.vcl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/vcl_templates/tldredirect.vcl.erb -------------------------------------------------------------------------------- /vcl_templates/www-eks.vcl.erb: -------------------------------------------------------------------------------- 1 | www.vcl.erb -------------------------------------------------------------------------------- /vcl_templates/www.vcl.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alphagov/govuk-cdn-config/HEAD/vcl_templates/www.vcl.erb --------------------------------------------------------------------------------