Check the docs :)
Specifically under "Adding Additional Sites > Site Type" https://laravel.com/docs/master/homestead#adding-additional-sites
Homestead supports several types of sites which allow you to easily run projects that are not based on Laravel. For example, let's add the apache type..
sites:
- map: project.test
to: /home/vagrant/code/my-project/web
type: "apache"
Also check out "Web Servers" https://laravel.com/docs/master/homestead#web-servers
Homestead uses the Nginx web server by default. However, it can install Apache if apache is specified as a site type. While both web servers can be installed at the same time, they cannot both be running at the same time. The flip shell command is available to ease the process of switching between web servers. The flip command automatically determines which web server is running, shuts it off, and then starts the other server. To use this command, SSH into your Homestead machine and run the command in your terminal:
flip
;)