Since Joomla version 3.10 it is recommended to turn output_buffering off in php.ini
This can be done easily by editing:
sudo vim /etc/php/7.4/apache2/php.ini
# add/modify
output_buffering = off
# restart service
sudo service apache2 restart
Check your PHP version, in this example it's 7.4. Thats it!