25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
418 B

  1. nelmio_cors:
  2. defaults:
  3. allow_credentials: true
  4. origin_regex: true
  5. allow_origin: [ '*' ]
  6. allow_headers: [ '*' ]
  7. # allow_origin: ['%env(CORS_ALLOW_ORIGIN)%']
  8. allow_methods: ['GET', 'OPTIONS', 'POST', 'PUT', 'PATCH', 'DELETE']
  9. # allow_headers: ['Content-Type', 'Authorization']
  10. expose_headers: ['Link']
  11. max_age: 3600
  12. paths:
  13. '^/': null