Hey there :slightly_smiling_face: I'm currently ha...
# docker
f
Hey there 🙂 I'm currently having problems setting up https for my local docker setup. The certificate is trusted and so on, the problem I have is that it keeps redirecting me to http. When I set
$config[RouterConstants::YVES_IS_SSL_ENABLED] = true;
it is redirecting me back and forth between http and https in an endless loop. I already set the base urls to https using this, but it does not seem to have an effect.
Copy code
$config[ApplicationConstants::BASE_URL_YVES]
    = $config[CustomerConstants::BASE_URL_YVES]
    = $config[ProductManagementConstants::BASE_URL_YVES]
    = $config[NewsletterConstants::BASE_URL_YVES]
    = sprintf(
    '<https://%s%s>',
    $yvesHost,
    $yvesPort !== 80 ? ':' . $yvesPort : ''
);
Is there anything else I have to set? Also I can't really check the actual contents of
BASE_URL_YVES
For later reference: I fixed my problem with the deploy.yml config of
Copy code
docker:
    ssl:
        enabled: true
        redirect: true