Skip to content

Instantly share code, notes, and snippets.

View chrisastley's full-sized avatar
🏠
Working from home

Chris Astley chrisastley

🏠
Working from home
View GitHub Profile
@peterjaap
peterjaap / varnish6.vcl
Last active April 23, 2025 09:04
Updated Magento 2 Varnish 6 VCL, in cooperation with Varnish Software, see Xkey soft purge version here; https://gist.github.com/peterjaap/7f7bf11aa7d089792e8fcc2fb34760fa
# A number of these changes come form the following PR's; , combines changes in https://github.com/magento/magento2/pull/29360, https://github.com/magento/magento2/pull/28944 and https://github.com/magento/magento2/pull/28894, https://github.com/magento/magento2/pull/35228, https://github.com/magento/magento2/pull/36524, https://github.com/magento/magento2/pull/34323
# VCL version 5.0 is not supported so it should be 4.0 even though actually used Varnish version is 6
# See the Xkey version here: https://gist.github.com/peterjaap/7f7bf11aa7d089792e8fcc2fb34760fa
vcl 4.1;
import std;
# The minimal Varnish version is 6.0
# For SSL offloading, pass the following header in your proxy server or load balancer: '/* {{ ssl_offloaded_header }} */: https'
@wigman
wigman / Compress Magento media
Last active August 6, 2021 12:49
Compress Magento media from commandline
# you need these installed if you want to:
sudo apt-get update
# resize images
sudo apt-get install imagemagick -y
# compress jpg and png files
sudo apt-get install jpegoptim optipng
# compress video's
sudo apt-get install ffmpeg
@leek
leek / _Magento2_DeleteTestData.md
Last active March 27, 2025 06:52
Magento 2 - Delete All Test Data

These set of scripts are for Magento 2. For Magento 1, see this Gist.