On Tue, Jun 3, 2008 at 3:05 AM, <[EMAIL PROTECTED]> wrote: > Hi, > > Yes, I was hoping that I've made a mistake there, but the thing is, I set up > Apache in my computer so that I can access the PHP code on > > sin.my.office.com:80/login.php > while the catalyst works on sin.my.office.com:3000 > > So there should be only one domain there, right ?
These are two different domains, because the ports are different. If you would like your catalyst app to live inside your otherwise running webserver, you may be interested in the proxypass directives for apache. This proxies a path within your webserver to your apache app. Get ready to overcome other challenges if you take this approach. <VirtualHost ....> ... ProxyPass /MyApp http://localhost:3000 ProxyPassReverse /MyApp http://localhost:3000 </VirtualHost> Kind Regards, /Mitchell K. Jackson _______________________________________________ List: [email protected] Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst Searchable archive: http://www.mail-archive.com/[email protected]/ Dev site: http://dev.catalyst.perl.org/
