Dear Visitor, you accessed Shopware 6 with an unknown Domain. This page provides guidance on common misconfigurations and how to resolve them.
Following URLs are known to Shopware: default.headless0, https://www.carclean.com/en, https://www.carclean.com/nl, https://www.cycleboard.eu, https://www.cycleboard.eu/de, https://www.cycleboard.eu/en, https://www.cycleboard.eu/es, https://www.cycleboard.eu/fr, https://www.cycleboard.eu/it, https://www.cycleboard.eu/nl, https://www.neptunestore.eu, https://www.neptunestore.eu/deu, https://www.neptunestore.eu/eng, https://www.neptunestore.eu/fra, https://www.neptunestore.eu/nld,
http://www.cycleboard.eu
Symptoms: Cannot resolve a Sales Channel, Assets are loading with http instead of https.
Make sure the visible URL is the actual URL in your browser: http://www.cycleboard.eu/en/cycleboard-elite-gen-2.html
. If not, the proxy configuration could be wrong.
Shopware got following headers from IP 127.0.0.1
:
{
"Host": "www.cycleboard.eu",
"X-Forwarded-Host": "www.cycleboard.eu",
"X-Forwarded-Proto": "https",
"X-Forwarded-For": "18.117.145.67, 127.0.0.1, 127.0.0.1"
}
The trusted_proxy configuration could look like this:
# config/packages/framework.yaml
framework:
# You can use multiple with comma separated values or subnet notation (10.0.0.0/8)
trusted_proxies: '127.0.0.1'
# trust *all* "X-Forwarded-*" headers
trusted_headers: [ 'x-forwarded-host', 'x-forwarded-proto', 'x-forwarded-for', ]
For further information about Trusted Proxies and configuration and handling of load balancer, checkout the Symfony documentation