We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56673df commit c89afebCopy full SHA for c89afeb
scripts/lua/cors.lua
@@ -44,6 +44,8 @@ function _M.replaceHeaders()
44
ngx.header['Access-Control-Allow-Methods'] = nil
45
ngx.header['Access-Control-Allow-Headers'] = nil
46
ngx.header['Access-Control-Allow-Credentials'] = nil
47
+ ngx.header['Access-Control-Expose-Headers'] = nil
48
+ ngx.header['Access-Control-Max-Age'] = nil
49
else
50
ngx.header['Access-Control-Allow-Origin'] = ngx.var.cors_origins == 'true' and (ngx.var.http_origin or '*') or ngx.var.cors_origins
51
ngx.header['Access-Control-Allow-Methods'] = ngx.var.cors_methods or 'GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS'
0 commit comments