PHP项目的CDN发布

dev-master 2021-11-22 15:09 UTC

This package is auto-updated.

Last update: 2024-09-24 00:14:37 UTC


README

内容分发网络模块,用于将文件发布到外部CDN并轻松访问URL。

将CDN包含到应用程序中

简单包含生成的cdn.php

require_once('vendor/cdn.php');

同步文件到CDN

调用cdn-push脚本

cdn-push [path to cdn.json]

cdn.json

示例

{
	"root-dir": "webroot",
	"default-config": {
		"adapter": "S3",
		"aws": {
			"region": "eu-west-1",
			"credentials": {
				"key": "",
				"secret": ""
			}
		},
		"bucket": "test-bucket",
		"url": "test.test.de"
	},
	"paths": {
		"img": true,
		"css": {
			"append-hash": true
		}
	}
}