1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- return [
- /*
- * A cors profile determines which origins, methods, headers are allowed for
- * a given requests. The `DefaultProfile` reads its configuration from this
- * config file.
- *
- * You can easily create your own cors profile.
- * More info: https://github.com/spatie/laravel-cors/#creating-your-own-cors-profile
- */
- 'cors_profile' => Spatie\Cors\CorsProfile\DefaultProfile::class,
- /*
- * This configuration is used by `DefaultProfile`.
- */
- 'default_profile' => [
- 'allow_credentials' => true,
- 'allow_origins' => explode(',', env('CORS_ALLOW_ORIGINS')),
- 'allow_methods' => [
- 'POST',
- 'GET',
- 'OPTIONS',
- 'PUT',
- 'PATCH',
- 'DELETE',
- ],
- 'allow_headers' => [
- 'Content-Type',
- 'Origin',
- 'Authorization',
- ],
- 'expose_headers' => [
- 'Cache-Control',
- 'Content-Language',
- 'Content-Type',
- 'Expires',
- 'Last-Modified',
- 'Pragma',
- ],
- 'forbidden_response' => [
- 'message' => 'Forbidden (cors).',
- 'status' => 403,
- ],
- /*
- * Preflight request will respond with value for the max age header.
- */
- 'max_age' => 60 * 60 * 24,
- ],
- ];
|