1
0
Files
TaskBoard/backend/index.php
Falknat 456876f837 Обновление бека+фронт
MVP версия - которая уже готова к работе
2026-01-12 01:11:32 +07:00

24 lines
553 B
PHP

<?php
require_once __DIR__ . '/app/config.php';
// CORS заголовки
$origin = $_SERVER['HTTP_ORIGIN'] ?? '';
header("Access-Control-Allow-Origin: $origin");
header("Access-Control-Allow-Credentials: true");
header("Access-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS");
header("Access-Control-Allow-Headers: Content-Type, Authorization");
// Preflight запрос
if ($_SERVER['REQUEST_METHOD'] === 'OPTIONS') {
http_response_code(200);
exit;
}
ignore_favicon();
check_ApiAuth($publicActions);
handleRouting($routes);
?>