fix: CI deploy .user.ini + ACL mask, migration memory limit
All checks were successful
Deploy Production / Build and Deploy to Production (push) Successful in 31s

- Déploie .user.ini via rsync pour augmenter memory_limit à 512M
- Réapplique le mask ACL rwx après chaque deploy
- ini_set('memory_limit') dans la route de migration user-projects

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
isUnknown 2026-03-08 18:31:57 +01:00
parent 01b4a374cf
commit 1fb4e47d8d
3 changed files with 19 additions and 0 deletions

View file

@ -16,6 +16,7 @@ return [
'pattern' => 'migrate-user-projects.json',
'method' => 'POST',
'action' => function () {
ini_set('memory_limit', '512M');
$user = kirby()->user();
if (!$user || $user->role()->id() !== 'admin') {