mirror of
https://gitee.com/iresty/apisix.git
synced 2024-11-30 19:18:06 +08:00
feature: added support CORS for /apisix/admin. (#982)
This commit is contained in:
parent
051baded1f
commit
eff1ca78e9
@ -222,13 +222,14 @@ http {
|
|||||||
server {
|
server {
|
||||||
listen {* port_admin *};
|
listen {* port_admin *};
|
||||||
|
|
||||||
location /apisix/admin/ {
|
location /apisix/admin {
|
||||||
{%if allow_admin then%}
|
{%if allow_admin then%}
|
||||||
{% for _, allow_ip in ipairs(allow_admin) do %}
|
{% for _, allow_ip in ipairs(allow_admin) do %}
|
||||||
allow {*allow_ip*};
|
allow {*allow_ip*};
|
||||||
{% end %}
|
{% end %}
|
||||||
deny all;
|
deny all;
|
||||||
{%end%}
|
{%end%}
|
||||||
|
|
||||||
content_by_lua_block {
|
content_by_lua_block {
|
||||||
apisix.http_admin()
|
apisix.http_admin()
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,7 @@ apisix:
|
|||||||
node_listen: 9080 # APISIX listening port
|
node_listen: 9080 # APISIX listening port
|
||||||
enable_heartbeat: true
|
enable_heartbeat: true
|
||||||
enable_admin: true
|
enable_admin: true
|
||||||
|
enable_admin_cors: true # Admin API support CORS response headers.
|
||||||
enable_debug: false
|
enable_debug: false
|
||||||
enable_dev_mode: false # Sets nginx worker_processes to 1 if set to true
|
enable_dev_mode: false # Sets nginx worker_processes to 1 if set to true
|
||||||
enable_ipv6: true
|
enable_ipv6: true
|
||||||
|
@ -446,6 +446,29 @@ function _M.http_balancer_phase()
|
|||||||
load_balancer(api_ctx.matched_route, api_ctx)
|
load_balancer(api_ctx.matched_route, api_ctx)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local function cors_admin()
|
||||||
|
local local_conf = core.config.local_conf()
|
||||||
|
if local_conf.apisix and not local_conf.apisix.enable_admin_cors then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
local method = get_method()
|
||||||
|
if method == "OPTIONS" then
|
||||||
|
core.response.set_header("Access-Control-Allow-Origin", "*",
|
||||||
|
"Access-Control-Allow-Methods", "POST, GET, PUT, OPTIONS, DELETE, PATCH",
|
||||||
|
"Access-Control-Max-Age", "3600",
|
||||||
|
"Access-Control-Allow-Headers", "*",
|
||||||
|
"Access-Control-Allow-Credentials", "true",
|
||||||
|
"Content-Length", "0",
|
||||||
|
"Content-Type", "text/plain")
|
||||||
|
ngx_exit(200)
|
||||||
|
end
|
||||||
|
|
||||||
|
core.response.set_header("Access-Control-Allow-Origin", "*",
|
||||||
|
"Access-Control-Allow-Credentials", "true",
|
||||||
|
"Access-Control-Expose-Headers", "*",
|
||||||
|
"Access-Control-Max-Age", "3600")
|
||||||
|
end
|
||||||
|
|
||||||
do
|
do
|
||||||
local router
|
local router
|
||||||
@ -455,6 +478,9 @@ function _M.http_admin()
|
|||||||
router = admin_init.get()
|
router = admin_init.get()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- add cors rsp header
|
||||||
|
cors_admin()
|
||||||
|
|
||||||
-- core.log.info("uri: ", get_var("uri"), " method: ", get_method())
|
-- core.log.info("uri: ", get_var("uri"), " method: ", get_method())
|
||||||
local ok = router:dispatch(get_var("uri"), {method = get_method()})
|
local ok = router:dispatch(get_var("uri"), {method = get_method()})
|
||||||
if not ok then
|
if not ok then
|
||||||
|
Loading…
Reference in New Issue
Block a user