I want to use ant install to deploy (and re-deploy and re-deploy) my webapp on a local virtualhost.
It works fine with the default host, but the virtual host does not have the manager webapp. I would like to use similar setup in the live enviromnet (no manager on the given host).
I found a promisiong property:
webapp.virtual.host=...
in some example build.properties, but it does not seem to get the job done. Is it even possible, and how?
In my answer to one SO post, Christian Semrau commented:
That said, your task becomes as easy as copying or removing the file on the remote server.
Yet, I still don’t understand why having manager app is a problem. You could, for example, only deploy it on different host/port:
and put relevant firewall restrictions. Or, alternatively, you could place
inside
Contextand achieve similar results.