Changing the session cookie’s name in Symfony 2

I have a development server, on which I have several Symfony 2.x projects under the same hostname in different directories. Now I’m facing a funny problem which is caused by that the cookies Symfony places for each of my projects have the same name.

To change this, you will have to modify the config.yml file like this:

session:
    name: SiteSpecificSessionName
    lifetime: 3600

contacts & more