sitemap.xml 5.5

Danke, aber das funktioniert nicht.
Vielleicht hab ich ja auch was falsch gemacht?
So sieht die config.php aus.

  array (
    'username' => 'xxxxxxx',
    'password' => 'xxxxxxx',
    'dbname' => 'xxxxxxx',
    'host' => 'xxxxxxx',
    'port' => 'xxxxxxx',
  ),
  
 	'cdn' => [
    'strategy' => 'plain',
    'adapters' => [
        'local' => [
            'type' => 'local',
            'mediaUrl' => '',
            'path' => realpath( __DIR__. '/'),
            'permissions' => [
                'file' => [
                    'public' => 0666 & ~umask(),
                    'private' => 0600 & ~umask(),
                ],
                'dir' => [
                    'public' => 0777 & ~umask(),
                    'private' => 0700 & ~umask(),
                ]
            ],
        ],
        'old_local' => [
            'type' => 'local',
            'mediaUrl' => '',
            'path' => realpath( __DIR__. '/'),
            'permissions' => [
                'file' => [
                    'public' => 0666 & ~umask(),
                    'private' => 0600 & ~umask(),
                ],
                'dir' => [
                    'public' => 0777 & ~umask(),
                    'private' => 0700 & ~umask(),
                ]
            ],
        ]
    ]
],

 'sitemap' => [
        'excluded_urls' => [
            [
                'resource' => 'manufacturer', // Möglich: Product, campaign, manufacturer, blog, category, static
                'identifier' => '0', // Die ID der o.g. Entität. Wenn leer (oder 0) wird die o.g. Resource komplett ausgeschlossen
                'shopId' => 0 // Die ID des Shops, für den dieser Ausschluss gilt. Bei 0 zählen alle Shops
            ]
        ]
    ]

);