Seems as if there is a wrong path in your symfony configuration as it tries to access a file outside of the web folder. It tries to open the path:
/var/www/clients/client1/web3/app/bootstrap.php.cache
while all files should be inside the web folder, so it should be:
/var/www/clients/client1/web3/web/app/bootstrap.php.cache
|