Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2019-07-29 16:32:37 -05:00
<?php
2023-04-17 13:51:35 +02:00
/*
| !!!! DO NOT EDIT THIS FILE !!!!
|
| You can change settings by setting them in the environment or .env
| If there is something you need to change, but is not available as an environment setting,
| request an environment variable to be created upstream or send a pull request.
*/
2019-07-29 16:32:37 -05:00
return [
/*
2020-07-08 07:36:51 -05:00
|--------------------------------------------------------------------------
2021-10-03 01:04:59 +02:00
| Cross-Origin Resource Sharing (CORS) Configuration
2020-07-08 07:36:51 -05:00
|--------------------------------------------------------------------------
|
2021-10-03 01:04:59 +02:00
| Here you may configure your settings for cross-origin resource sharing
| or "CORS". This determines what cross-origin operations may execute
| in web browsers. You are free to adjust these settings as needed.
2020-07-08 07:36:51 -05:00
|
2021-10-03 01:04:59 +02:00
| To learn more: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
2020-07-08 07:36:51 -05:00
|
*/
'paths' => [],
'allowed_methods' => ['*'],
'allowed_origins' => [],
'allowed_origins_patterns' => [],
'allowed_headers' => ['*'],
'exposed_headers' => [],
'max_age' => 0,
2019-07-29 16:32:37 -05:00
2020-07-08 07:36:51 -05:00
'supports_credentials' => false,
2023-04-17 13:51:35 +02:00
2019-07-29 16:32:37 -05:00
];