mirror of
https://github.com/PhyreApps/PhyrePanel.git
synced 2024-11-22 07:30:25 +00:00
19 lines
458 B
PHP
19 lines
458 B
PHP
<?php
|
|
|
|
namespace Modules\Microweber;
|
|
|
|
use App\Backup\Abstract\BackupConfigBase;
|
|
|
|
class MicroweberBackupConfig extends BackupConfigBase
|
|
{
|
|
public array $excludePaths = [
|
|
|
|
'public_html/storage/framework/cache/',
|
|
'public_html/storage/framework/views/',
|
|
'public_html/userfiles/cache/',
|
|
'public_html/userfiles/media/thumbnails/',
|
|
'public_html/storage/framework/sessions/',
|
|
'public_html/storage/cache/'
|
|
];
|
|
|
|
}
|