We are migrating a number of sites over to Matrix. Some applications exist in the old sites as IIS virtual directories. Is it easy enough:
[list=1]
to host non-Matrix sites on a Matrix box?
[*]to have directories within a Matrix site which are not served by Matrix but by another application on the server?
We are migrating a number of sites over to Matrix. Some applications exist in the old sites as IIS virtual directories. Is it easy enough:
[list=1]
to host non-Matrix sites on a Matrix box?
[*]to have directories within a Matrix site which are not served by Matrix but by another application on the server?
Thanks
Tom
[/quote]
Hi Tom,
Yes it is.
You just need to set Apache and/or Squid up accordingly.
Yeah it's possible and potentially painful depending on how your other pages are served. If you can get the pages in a state so they can be served by apache, just add aliases in httpd.conf
That's if all content is served with apache… we were in a similar situation as you, but had the luxury of a layer 7 switch and irules so we could pish the traffic to the right places (ie point some pages at the old system(s))
That's if all content is served with apache…[/quote]
Yes, we're currently auditing the existing content, to work out what is Apache-friendly, given that the existing hosting is IIS. Thanks for this initial info, which should work for a good chunk of our content.
[quote]we were in a similar situation as you, but had the luxury of a layer 7 switch and irules so we could pish the traffic to the right places (ie point some pages at the old system(s))[/quote]
It is possible (though unlikely) that such a switch might exist in our ISP's datacentre, but we really want to decommission the old servers, as far as possible, to save money, so we want to avoid this if at all possible.
We are needing to do something similar, but what kind of information wouldn't be Apache friendly, as you say? Our files are all html and javascript, so that should be fine, yes?
[quote]
We are needing to do something similar, but what kind of information wouldn't be Apache friendly, as you say? Our files are all html and javascript, so that should be fine, yes?
[quote]
Yes, I'm talking about .NET and old ASP stuff, together MS SQL server data (and even Access). That's what's going to take time to migrate.
Thanks, everyone, for the info
Tom
[/quote]
Late to the thread…
Another option is to put nginx in front and direct requests based on URL. Nginx is lightweight you could run it on the matrix box, and proxy the IIS requests to the other box.
We are doing this at the moment (not to IIS though) and it works great. Each section of the the site is migrated, then we add those urls to redirect the traffic. Because it is regex based you can pick of any URL you need.
This avoids having to muck around with your matrix server setup.