Hi All, Good day! I've installed the shop in my ...
# docker
j
Hi All, Good day! I've installed the shop in my local system. When I am trying to place an order with redirection mode(it will be redirected from the shop to the concerned banking site), I am facing the ERR_SSL_PROTOCOL_ERROR. Please refer to the below image. This issue occurs when I return from the banking site to my shop.
w
Check your
deploy.dev.yml
if SSL is enabled:
Copy code
docker:
    ssl:
        enabled: true
        redirect: true
If not, please adjust it and rebuild your containers
You can also check:
Copy code
$config[SessionConstants::ZED_SSL_ENABLED]
        = $config[SessionConstants::YVES_SSL_ENABLED]
        = $config[RouterConstants::YVES_IS_SSL_ENABLED]
        = $config[RouterConstants::ZED_IS_SSL_ENABLED]
        = $config[ApplicationConstants::ZED_SSL_ENABLED]
        = $config[ApplicationConstants::YVES_SSL_ENABLED]
        = true;
In your application configuration. After you activated SSL you can no longer call the local shop without https
j
@wooden-king-30682 Thanks for your reply it is working fine. Thank you so much.
🙇‍♂️ 1