commit 08-2025

This commit is contained in:
Kevin Adametz 2025-08-12 18:01:59 +02:00
parent 9ae662f63e
commit 480fdc65ed
404 changed files with 65310 additions and 2600431 deletions

26
config/cors.php Normal file
View file

@ -0,0 +1,26 @@
<?php
return [
'paths' => ['api/*', '*'],
'allowed_methods' => ['*'],
'allowed_origins' => [
'https://mivita.care',
'https://*.mivita.care',
],
'allowed_origins_patterns' => [
'/^https:\/\/.*\.mivita\.care$/'
],
'allowed_headers' => ['*'],
'exposed_headers' => [],
'max_age' => 0,
'supports_credentials' => true,
];