Session-Cookie is set twice?

Hey guys,
I checked the HTTP headers of a website I made and got the following result:

HTTP/1.1 200 OK Date: Tue, 23 Aug 2016 11:16:01 GMT Server: Apache/2.4.10 (Debian) Set-Cookie: kirby_session=b886bmbcib83shl2a7hj2suhv7; path=/ Expires: Thu, 19 Nov 1981 08:52:00 GMT Cache-Control: no-store, no-cache, must-revalidate Pragma: no-cache Set-Cookie: kirby_session=b886bmbcib83shl2a7hj2suhv7; path=/; secure; HttpOnly Vary: Accept-Encoding Connection: close Content-Type: text/html; charset=UTF-8

Can anyone tell me why the same cookie is set twice?

Thank you in advance!

Update:
The result above was generated by cloxy. If I use webconfs, the result is as expected:
HTTP/1.1 200 OK => Date => Tue, 23 Aug 2016 11:15:17 GMT Server => Apache/2.4.10 (Debian) Set-Cookie => kirby_session=r294c38742apmsf51cvq71arf6; path=/; secure; HttpOnly Expires => Thu, 19 Nov 1981 08:52:00 GMT Cache-Control => no-store, no-cache, must-revalidate Pragma => no-cache Vary => Accept-Encoding Connection => close Content-Type => text/html; charset=UTF-8

But why are the results different?