in reply to How to build multirealm Catalyst application
A single app would be fine. Just mod_rewrite the urls (since you're using apache) to the appropriate app urls. and use $c->uri_for_action over the nasty string passing to uri_for. Things just get messy if you do that. Plus, it gives you the benefit of only needing to know the private path, with Catalyst taking care of generating the URL properly, in case you decide to move things around or change names/API.
mtfnpy
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to build multirealm Catalyst application
by roman (Monk) on Jul 26, 2010 at 06:02 UTC | |
by stonecolddevin (Parson) on Jul 26, 2010 at 19:52 UTC |