0 Replies Latest reply on Nov 16, 2009 6:42 PM by mirco321

    JBoss to process All Domains ?

      Hello,

      In server.xml I can easily add a list of domains to use with our application :

      <Host name="myapplication" autoDeploy="false" deployOnStartup="false"
       deployXML="false">
      <Alias>www.domain1.com</Alias>
      <Alias>domain1.com</Alias>
      <Alias>www.domain2.com</Alias>
      <Alias>domain2.com</Alias>
      
      <Valve className="org.apache.catalina.valves.AccessLogValve"
      prefix="things" suffix=".log" pattern="common"
      directory="${jboss.server.home.dir}/log"/>
      
      <DefaultContext cookies="true" crossContext="true" override="true"/>
      </Host>



      We would like to do something more - to let our users use their own domains for their accounts.

      Basically, what we need, is to use all domains in our application. But there is no option to use a wildchar in Alias tag.

      Is there anything how this can be done?