修改CORS可配置

This commit is contained in:
邹景立 2021-09-14 17:16:38 +08:00
parent 4b627c518c
commit aba98308c4

View File

@ -35,11 +35,12 @@ return [
'deny_app_list' => [],
// 非调试模式时显示错误的消息
'error_message' => '页面错误!请稍后再试~',
// 调试模式异常页面的模板文件
// 'exception_tmpl' => app()->getBasePath() . 'admin/view/error.tpl',
// 自动配置跨域
// CORS 自动配置跨域
'cors_auto' => true,
// 配置跨域域名
// CORS 配置跨域域名
'cors_host' => [],
// CORS 授权请求方法
'cors_methods' => 'GET,PUT,POST,PATCH,DELETE',
// CORS 跨域头部字段
'cors_headers' => 'Api-Name,Api-Type,Api-Token,User-Form-Token,User-Token,Token',
];