-
Notifications
You must be signed in to change notification settings - Fork 16
Description
We've updated some files on the server and trying to purge the imgix images from the server through the asset index. No errors are thrown but no image cache gets purged. When i try the asset url in the tools section in imgix then the cache is purged.
I've created a new api key as welll just in case the old one was not working anymore but still no difference.
This is our config:
return [
// Global settings
'*' => [
'cacheDuration' => '31536000',
'fillInterval' => '400',
'fillTransforms' => true,
'removeTransformsOnAssetFileops' => true,
'imgixConfig' => [
'default' => [
'domain' => 'domain.imgix.net',
'useHttps' => true,
'signKey' => 'signkey',
'sourceIsWebProxy' => false,
'getExternalImageDimensions' => true,
'defaultParams' => ['auto'=>'compress,format', 'q'=>70],
]
],
'imgixApiKey' => 'imgixapikey-placeholder',
],
'dev' => [
'transformer' => 'imgix',
],
// Staging environment settings
'staging' => [
'cacheDuration' => '3600',
'cacheEnabled' => false,
'transformer' => 'imgix',
'fillTransforms' => false,
'imgixProfile' => 'default'
],
// Production environment settings
'production' => [
'transformer' => 'imgix',
'imgixProfile' => 'default'
],
];