Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 722 Bytes

2022-11-23-use-env-local-for-web-installer.md

File metadata and controls

32 lines (22 loc) · 722 Bytes
title issue
Use env local for web installer
NEXT-24091

Core

  • Added support for multiple mailers defined in Symfony framework configuration

Upgrade Information

Change of environment variables

  • Renamed following environment variables to use more generic environment variable name used by cloud providers:
    • SHOPWARE_ES_HOSTS to OPENSEARCH_URL
    • MAILER_URL to MAILER_DSN

You can change this variable back in your installation using a config/packages/elasticsearch.yaml with

elasticsearch:
    hosts: "%env(string:SHOPWARE_ES_HOSTS)%"

or prepare your env by replacing the var with the new one like

elasticsearch:
    hosts: "%env(string:OPENSEARCH_URL)%"