1
0
mirror of git://f0xx.org/ac/ac-be-builder synced 2026-08-12 18:12:50 +03:00

Builder BE: docker home env + Gitea CI webhook status.

Mirror ac-ms-build runner fixes for cluster PHP-FPM (user nobody).

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Anton Afanasyeu
2026-08-07 22:15:26 +02:00
parent 49183ea8d3
commit c1eb7be233
6 changed files with 224 additions and 4 deletions

View File

@@ -33,6 +33,10 @@ if ($route === '/api/heartbeat.php' || str_ends_with($route, '/api/heartbeat.php
require __DIR__ . '/api/heartbeat.php';
exit;
}
if ($route === '/api/build_webhook.php' || str_ends_with($route, '/api/build_webhook.php')) {
require __DIR__ . '/api/build_webhook.php';
exit;
}
if ($route === '/logout') {
Auth::logout();