I have run into following issue. I have a Symfony 2.1 Application. It runs as two independent instances for two independent customers. The source code is exactly the same. Only the databases are different. Is there any possibility, to configure it like that: Only one instance of symfony and different databases depending from domaint. So Customer A will enter address - customerA.com and it loads application with DatabaseA, and customer B enters address customerB.com and it loads application with DatabaseB. Is this possible? If yes, how to do it?
I run Symfony with Doctrine 2 and MySQL.