Shopware 6: Best Practice Configuration

Configuration

  • Disable admin message consumer
  • Disable auto update by shopware
# config/packages/shopware.yml
shopware:
    auto_update:
        enabled: false
    admin_worker:
        enable_admin_worker: false
  • Send emails via queue
# config/packages/framework.yaml
framework:
    mailer:
        message_bus: 'messenger.default_bus'

More tweaks can be found in the shopware documentation

To be continued…

Leave a Reply