Upload of Files with Spaces in the name does not work from Web Frontend

Nextcloud Hub 3 (25.0.2)

/apps/files/

Upload of Files with a space Char in the Name does not work. There is no error displayed.
Even in Log files is nothing mentioned about a problem. The File is not uploaded to nextcloud, is not present in server file system!

Tested with Firefox latest version.
Renaming the File with no space in the name works, than upload works fine.
It works with whatever files size.

Solved: This was a Apache configuration problem after migrating from mod_php to php-fpm.

Instead of ProxyPassMatch it is required to use :

<FilesMatch “.(php)$”>
SetHandler “proxy:unix:/run/php/php7.4-fpm.sock|fcgi://localhost”
</FilesMatch>