# CORS Config
CORS config allows you to directly configure how Leaf\Http\CORS
behaves.
<?php
return [
/*
|--------------------------------------------------------------------------
| Configure allowed origins
|--------------------------------------------------------------------------
|
| Configures the Access-Control-Allow-Origin CORS header. Possible values:
|
| * String - set origin to a specific origin. For example if
| you set it to "http://example.com" only requests from
| "http://example.com" will be allowed.
|
| * RegExp - set origin to a regular expression pattern which will be
| used to test the request origin. If it's a match, the request origin
| will be reflected. For example the pattern /example\.com$/ will reflect
| any request that is coming from an origin ending with "example.com".
|
| * Array - set origin to an array of valid origins. Each origin can be a String
| or a RegExp. For example ["http://example1.com", /\.example2\.com$/] will
| accept any request from "http://example1.com" or from
| a subdomain of "example2.com".
|
| * Function - set origin to a function implementing some custom
| logic. The function takes the request origin as the first parameter
| and a callback (called as callback(err, origin), where origin is a
| non-function value of the origin option) as the second.
|
*/
'origin' => '*',
/*
|--------------------------------------------------------------------------
| Configure allowed HTTP methods
|--------------------------------------------------------------------------
|
| Configures the Access-Control-Allow-Methods CORS header.
| Expects a comma-delimited string (ex: 'GET,PUT,POST') or
| an array (ex: ['GET', 'PUT', 'POST'])
|
*/
'methods' => 'GET,HEAD,PUT,PATCH,POST,DELETE',
/*
|--------------------------------------------------------------------------
| Configure allowed HTTP headers
|--------------------------------------------------------------------------
|
| Configures the Access-Control-Allow-Headers CORS header. Expects a
| comma-delimited string (ex: 'Content-Type,Authorization') or
| an array (ex: ['Content-Type', 'Authorization']). If not specified,
| defaults to reflecting the headers specified in the request's
| Access-Control-Request-Headers header.
|
*/
'allowedHeaders' => '*',
/*
|--------------------------------------------------------------------------
| Configure expose headers
|--------------------------------------------------------------------------
|
| Configures the Access-Control-Expose-Headers CORS header. Expects
| a comma-delimited string (ex: 'Content-Range,X-Content-Range')
| or an array (ex: ['Content-Range', 'X-Content-Range']).
| If not specified, no custom headers are exposed.
|
*/
'exposedHeaders' => '',
/*
|--------------------------------------------------------------------------
| Configure credentials
|--------------------------------------------------------------------------
|
| Configures the Access-Control-Allow-Credentials CORS header.
| Set to true to pass the header, otherwise it is omitted.
|
*/
'credentials' => false,
/*
|--------------------------------------------------------------------------
| Configure max age
|--------------------------------------------------------------------------
|
| Configures the Access-Control-Max-Age CORS header. Set to
| an integer to pass the header, otherwise it is omitted.
|
*/
'maxAge' => null,
/*
|--------------------------------------------------------------------------
| Configure preflight continue
|--------------------------------------------------------------------------
|
| Pass the CORS preflight response to the next handler.
|
*/
'preflightContinue' => false,
/*
|--------------------------------------------------------------------------
| Log open
|--------------------------------------------------------------------------
|
| Provides a status code to use for successful OPTIONS requests,
| since some legacy browsers (IE11, various SmartTVs) choke on 204.
|
*/
'optionsSuccessStatus' => 204,
];
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114