
Wish List
Tags
adobe air ajax apple cf community cfml coldfusion examples ext flash flex google javascript max2007 max2008 misc open source programming railo software technology ui
Recent Entries
The Pirate Bay Sold!
Railo Documentation
iPhone Navi Software Now Available!
iPhone OS3 Cracked!
Search
RSS
Subscribe
Enter your email address to subscribe to this blog.
Blogroll
An Architect's View
Ben Forta
CFSilence
Coldfusion Jedi
Rey Bango
TalkingTree
Configuring Resin to Port 80 for Railo
When you install Railo the port for Resin is defaulted to Port 8600 so in order to see your install you need to go to http://localhost:8600. Well what if you want to run it under port 80?


I have a question for you and any others. I want to set up a catch-all site alias for my resin/railo site. The section in the resin.conf file for <host ...></host> is where you set up each site and it's aliases. Like this:
<host id='websiteone.com'>
<host-alias>subdmn_a.websiteone.com</host-alias>
<host-alias>subdmn_b.websiteone.com</host-alias>
<host-alias>subdmn_c.websiteone.com</host-alias>
<root-directory>/www/websiteone/</root-directory>
<web-app id="/">
<document-directory>.</document-directory>
</web-app>
</host>
But I need a lot of subdomains. I don't want to specify them all and have to restart the server each time I add a new one. (Serious annoyance and site disturbance!)
Apache has a catch-all using the "*.websiteone.com" notation but I can't get it to work with Resin. I would really like to have this:
<host id='websiteone.com'>
<host-alias>*.websiteone.com</host-alias>
<root-directory>/www/websiteone/</root-directory>
<web-app id="/">
<document-directory>.</document-directory>
</web-app>
</host>
Does anyone know how to make this work with Resin? Please. please??
Thanks in advance.
http://www.caucho.com/resin/doc/host-tags.xtp#host...
Best,
Jamie