Skip to content

Commit c89afeb

Browse files
alexsong93mhamann
authored andcommitted
Add additional headers to remove when cors is disabled (#317)
1 parent 56673df commit c89afeb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

scripts/lua/cors.lua

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ function _M.replaceHeaders()
4444
ngx.header['Access-Control-Allow-Methods'] = nil
4545
ngx.header['Access-Control-Allow-Headers'] = nil
4646
ngx.header['Access-Control-Allow-Credentials'] = nil
47+
ngx.header['Access-Control-Expose-Headers'] = nil
48+
ngx.header['Access-Control-Max-Age'] = nil
4749
else
4850
ngx.header['Access-Control-Allow-Origin'] = ngx.var.cors_origins == 'true' and (ngx.var.http_origin or '*') or ngx.var.cors_origins
4951
ngx.header['Access-Control-Allow-Methods'] = ngx.var.cors_methods or 'GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS'

0 commit comments

Comments
 (0)