Yes.
You can use this URL http://server.ip.address.here:8080/AwareIM/logonAdmin.html to choose which application to log on to.
You can also configure hosts in your server.xml file like this:
<Host name=“roadrunner.acme.com” appBase=“webapps”
unpackWARs=“true” autoDeploy=“true”>
<Alias>roadrunner.acme.com</Alias>
<Context path="" docBase=“c:/AwareIM/Tomcat/webapps/AwareIM/roadrunner” debug=“0”/>
</Host>
<Host name=“coyote.acme.com” appBase=“webapps”
unpackWARs=“true” autoDeploy=“true”>
<Alias>coyote.acme.com</Alias>
<Context path="" docBase=“c:/AwareIM/Tomcat/webapps/AwareIM/coyote” debug=“0”/>
</Host>
Then create an index.jsp file in each “docBase” directory that contains this:
Roadrunner:
<% response.sendRedirect(“https://roadrunner.acme.com/AwareIM/logonOp.aw?logonPage=roadrunner.html”); %>
Coyote:
<% response.sendRedirect(“https://coyote.acme.com/AwareIM/logonOp.aw?logonPage=coyote.html”); %>
Then make a copy of the login page “logon.html” in your C:\AwareIM\Tomcat\webapps\AwareIM folder to set the correct BSV parameters so that it will login to the correct Business Space and save it as roadrunner.html or coyote.html
I am sure these steps can be found in the official documentation or the forum if you search for it.