The NelmioCorsBundle allows you to send Cross-Origin Resource Sharing headers with ACL-style per-URL configuration.
If you want to have a global overview of CORS workflow, you can browse this image.
- Handles CORS preflight OPTIONS requests
- Adds CORS headers to your responses
Require the nelmio/cors-bundle
package in your composer.json and update your dependencies.
$ composer require nelmio/cors-bundle
Add the NelmioCorsBundle to your application's kernel:
public function registerBundles()
{
$bundles = array(
...
new Nelmio\CorsBundle\NelmioCorsBundle(),
...
);
...
}
The defaults
are the default values applied to all the paths
that match,
unless overriden in a specific URL configuration. If you want them to apply
to everything, you must define a path with ^/
.
This example config contains all the possible config values with their default
values shown in the defaults
key. In paths, you see that we allow CORS
requests from any origin on /api/
. One custom header and some HTTP methods
are defined as allowed as well. Preflight requests can be cached for 3600
seconds.
nelmio_cors:
defaults:
allow_credentials: false
allow_origin: []
allow_headers: []
allow_methods: []
expose_headers: []
max_age: 0
hosts: []
origin_regex: false
paths:
'^/api/':
allow_origin: ['*']
allow_headers: ['X-Custom-Auth']
allow_methods: ['POST', 'PUT', 'GET', 'DELETE']
max_age: 3600
'^/':
origin_regex: true
allow_origin: ['^http://localhost:[0-9]+']
allow_headers: ['X-Custom-Auth']
allow_methods: ['POST', 'PUT', 'GET', 'DELETE']
max_age: 3600
hosts: ['^api\.']
allow_origin
and allow_headers
can be set to *
to accept any value, the
allowed methods however have to be explicitly listed. paths
must contain at least one item.
If origin_regex
is set, allow_origin
must be a list of regular expressions matching
allowed origins. Remember to use ^
and $
to clearly define the boundaries of the regex.
Note: If you allow POST methods and have HTTP method overriding enabled in the framework, it will enable the API users to perform PUT and DELETE requests as well.
Released under the MIT License, see LICENSE.