[Solved] Date formating and localization

Is there a setting somewhere to set the timezone and localization in neos?

I’ve got a property defined as DateTime. My local timezone in PHP on my Server is configured as Europe/Vienna.

In my template I use this statement to output my date property:
{begin -> f:format.date(format:‘j. F Y H:i’)}

If I use the inspector to enter 2019-01-01 00:00 the result in frontend is:
31. December 2018 23:00

What do I have to do, to get:
1. Jänner 2019 00:00

found the solution in: [SOLVED] NodeTypes DateTime store time as UTC

I added date.timezone=“Europe/Berlin” to my php.ini and everything is fine now.