@vkronlein according to https://laravel.com/docs/8.x/homestead#included-software
Homestead runs Nginx not Apache, so you don't need to disable Apache as its not enabled anyway.
if you run the following
$ sudo apt-get remove apache2*
$ sudo apt-get autoremove
$ sudo apt-get autoclean
$ sudo rm -rf /etc/apache2 /var/lib/apache2 /var/lib/apache2
on your vagrant, you'll get the following:
Package 'apache2-mpm-itk' is not installed, so not removed
Package 'apache2' is not installed, so not removed
Package 'apache2-bin' is not installed, so not removed
Package 'apache2-data' is not installed, so not removed
Package 'apache2-dbg' is not installed, so not removed
Package 'apache2-dev' is not installed, so not removed
Package 'apache2-doc' is not installed, so not removed
Package 'apache2-ssl-dev' is not installed, so not removed
Package 'apache2-utils' is not installed, so not removed
Package 'apache2-suexec-custom' is not installed, so not removed
Package 'apache2-suexec-pristine' is not installed, so not removed
which suggests its optional but not installed.