Finally found the solution:
in site/config/config.php you can set:
Dir::$defaults['permissions'] = 0775;
As Kirby uses php’s mkdir the umask of the server is also important. If this is set to 022 the folders will still be created with 0755.
Finally found the solution:
in site/config/config.php you can set:
Dir::$defaults['permissions'] = 0775;
As Kirby uses php’s mkdir the umask of the server is also important. If this is set to 022 the folders will still be created with 0755.