offline/oc-cors-plugin
最新稳定版本:v1.1.1
Composer 安装命令:
composer require offline/oc-cors-plugin
包简介
Setup and manage Cross-Origin Resource Sharing headers in October CMS
README 文档
README
This plugin is based on https://github.com/barryvdh/laravel-cors.
All configuration for the plugin can be done via the backend settings.
The following cors headers are supported:
- Access-Control-Allow-Origin
- Access-Control-Allow-Headers
- Access-Control-Allow-Methods
- Access-Control-Allow-Credentials
- Access-Control-Expose-Headers
- Access-Control-Max-Age
Currently these headers are sent for every request. There is no per-route configuration possible at this time.
Setup
After installing the plugin visit the CORS settings page in your October CMS backend settings.
You can add * as an entry to Allowed origins, Allowed headers and Allowed methods to allow any kind of CORS request from everywhere.
It is advised to be more explicit about these settings. You can add values for each header via the repeater fields.
It is important to set these intial settings once for the plugin to work as excpected!
Filesystem configuration
As an alternative to the backend settings you can create a config/config.php file in the plugins root directory to configure it.
The filesystem configuration will overwrite any defined backend setting.
<?php // plugins/offline/cors/config/config.php return [ 'supportsCredentials' => true, 'maxAge' => 3600, 'allowedOrigins' => ['*'], 'allowedHeaders' => ['*'], 'allowedMethods' => ['GET', 'POST'], 'exposedHeaders' => [''], 'preflightResponseStatusCode' => 204, ];
统计信息
- 总下载量: 200
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-02-12