I need to make a mirrored website with a slightly different info.
spawning up a new server for each site is too much work, and takes a lot of effort to update.
most of the content should be intact, but only some files should be tweaked a little, like language files, and some images.
I was thinking that this can be done easily with a proxy server like Squid, that also has a cache. but I could not find how to alter these certain files.
so for example:
main site is www.site1.com
:
www.site1.com --- PROXY --> spa.site1.com (altered images and lang)
www.site1.com --- PROXY --> fra.site1.com (altered images and lang)
What's the best approach to this, or maybe I should use an apache server with mod_proxy and mod_substitute?
Thanks