Utilisation suexec

Bonjour,
Sous Debian buster Apache2, j’ai un vhost configuré avec suexecusergroup:

<VirtualHost *:443>
...
        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
        <Directory "/usr/lib/cgi-bin">
                AllowOverride All
                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
                Order allow,deny
                Allow from all
        </Directory>

       SuexecUserGroup eu     www-data
...

mod suexec est installé:

# apache2ctl -M|grep suexec
 suexec_module (shared)

Pourtant le vhost est executé en tant que www-data et non eu

Où est l’erreur ?