I currently have a VM Instance in Google Cloud Console. This VM instance has an application that is live which is running against an Apache Server. This application is not in the standard var/www/html
folder but instead in a folder var/www/some_folder
.
I would like to make a replica of this application and have it set up as a "staging" server. I started by cloning the VM instance by following these steps: https://cloud.google.com/compute/docs/instances/create-vm-from-similar-instance
However after successfully cloning the VM, when I navigate to the external IP I am just prompted to the default welcome page for Apache Server. How would I configure the VM instance to either redirect to my application when visited or add a domain that points to my application on the apache server.
Thanks