You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The moment a bundle configuration is processed, the $v does not yet contain the environment variable value (i.e. https://www.domain.tld), but rather a variable temporary name (e.g. env_dc3b1098b7dfc6db_ACCELERATOR_CACHE_HOST_93ccaa97cef7fc766f177ccffea2b95b), thus always receiving the http:// prefix.
The text was updated successfully, but these errors were encountered:
Given this configuration:
and this
.env
file:The command will not work because it will try to fetch the
http://https://www.domain.tld/apc-*.php
URL. Actual problem lies here:https://github.com/Smart-Core/AcceleratorCacheBundle/blob/master/DependencyInjection/Configuration.php#L23
The moment a bundle configuration is processed, the
$v
does not yet contain the environment variable value (i.e.https://www.domain.tld
), but rather a variable temporary name (e.g.env_dc3b1098b7dfc6db_ACCELERATOR_CACHE_HOST_93ccaa97cef7fc766f177ccffea2b95b
), thus always receiving thehttp://
prefix.The text was updated successfully, but these errors were encountered: