Skip to content

Cowboy middleware supporting Cross-Origin Resource Sharing (CORS)

License

Notifications You must be signed in to change notification settings

danielwhite/cowboy_cors

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

A cowboy middleware implementation of the W3C Cross-Origin Resource Sharing specification.

The W3C Candidate Recommendation 29 January 2013 is the reference for the current implementation.

Configuration

The CORS middleware requires the cors_policy value. This value indicates the name of the module implementing the cowboy_cors_policy behaviour.

Policy Modules

A number of optional callbacks can be implemented in the policy module. Each callback should accept the Req object and the State as arguments, and return a three-tuple of the from {Value, Req, State}.

Descriptions

allowed_origins

  • Value type: '*' | [binary()]
  • Default value: []

Return the list of allowed origins.

This may optionally return the atom '*' to allow requests from any origin. In this case, the value of the Access-Control-Allow-Origin header will be the origin of the request rather than a value of "*".

allow_credentials

  • Value type: boolean()
  • Default value: false

Return whether the resource supports user credentials.

exposed_headers

  • Value type: [binary()]
  • Default value: []

Return a list of header names that can be exposed to the client.

allowed_headers

  • Value type: [binary()]
  • Default value: []

Return a list of header names that are supported by the resource.

allowed_methods

  • Value type: [binary()]
  • Default value: []

Return a list of methods that the resource supports.

max_age

  • Value type: non_neg_integer() | undefined
  • Default value: undefined

Return the maximum time (in seconds) that the results of a preflight request can be cached by the client.

About

Cowboy middleware supporting Cross-Origin Resource Sharing (CORS)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages