This content has been marked as final.
Show 2 replies
-
1. Re: Can I use aliases with wildcards in mod_cluster and JBoss?
jfclere Dec 10, 2013 7:40 AM (in response to jbossolo)An Alias can't have a wild-card. You have http://docs.jboss.org/mod_cluster/1.2.0/html/native.config.html#d0e505 to switch off the Alias logic in mod_cluster.
-
2. Re: Can I use aliases with wildcards in mod_cluster and JBoss?
jbossolo Jan 14, 2014 6:19 AM (in response to jfclere)Ok thanks!
So, no UseAlias.
The solution to my problem is to use a wild-card in the ServerAlias and to create a specific balancer, like this:
CreateBalancers 1
<VirtualHost xxx.xxx.xxx.xxx:80>
ServerAlias blabla*.acme.com
<Proxy balancer://myacmebalancer>
ProxySet stickysession=JSESSIONID|jsessionid
ProxySet nofailover=On
</Proxy>
</VirtualHost>
And so on, different virtualhosts with different balancers for the other applications.
Bye!