Files
laralog/routes/console.php
T
ak 6f13d13d5a chore: 上线前加固——调度器/登录限流/env 模板补全
- routes/console.php:注册每日数据库备份(03:00)+ 前台页面缓存清理(04:00)
- 前台登录/注册 POST 加 throttle:6,1 防爆破
- .env.example 补 S3/LLM/MARKET/UPLOAD_DISK 配置项,新部署不再漏配
2026-08-13 03:32:27 +08:00

22 lines
687 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
declare(strict_types=1);
use Illuminate\Support\Facades\Schedule;
/*
|--------------------------------------------------------------------------
| 调度器(生产需配置 cron* * * * * php artisan schedule:run
|--------------------------------------------------------------------------
*/
// 数据库每日备份(保留 7 天;spatie/laravel-backup
Schedule::command('backup:run --only-db')
->dailyAt('03:00')
->withoutOverlapping()
->appendOutputTo(storage_path('logs/backup.log'));
// 每日清理前台页面缓存(避免旧缓存长期驻留)
Schedule::call(fn () => \App\Blog\Support\PageCacheMiddleware::flush())
->dailyAt('04:00');