Passbolt keeps asking for password for every usage of login

Hello @Mdocken,

You can extend the php session timeout via the php config as mentioned in this comment: Why are session timing out more rapidely since v2.11?

It is also possible to extend the php session via the passbolt config file. As per the CakePHP documentation note that the you still need to override the php configuration session.gc_maxlifetime via the ini entries.

    'Session' => [
        'defaults' => 'php',
        // Session timeout in minutes.
        'timeout' => 20,
        'ini' => [
            // Please note that php.ini's session.gc_maxlifetime must be equal to or greater than the largest Session['timeout'] in all served websites for it to have the desired effect.
            'session.gc_maxlifetime' => 1440
        ]
    ]

I hope it will help you