| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/client-portal-laravel/releases/20260626120707/config/ |
Upload File : |
<?php
return [
/*
|--------------------------------------------------------------------------
| Minimum Free Disk Space (MB)
|--------------------------------------------------------------------------
|
| The minimum free disk space in megabytes required before creating a new
| backup. If the available space is below this threshold, the backup
| action will refuse to run.
|
*/
'min_free_space_mb' => env('BACKUP_MIN_FREE_SPACE_MB', 500),
/*
|--------------------------------------------------------------------------
| Maximum Transfer Size (MB)
|--------------------------------------------------------------------------
|
| The maximum file size in megabytes that can be transferred via SFTP.
| Files larger than this will be rejected to prevent timeouts or
| excessive resource usage.
|
*/
'max_transfer_size_mb' => env('BACKUP_MAX_TRANSFER_SIZE_MB', 2048),
/*
|--------------------------------------------------------------------------
| Allowed SFTP Ports
|--------------------------------------------------------------------------
|
| The list of ports that are allowed for SFTP connections. This is a
| security measure to prevent connecting to unexpected ports.
|
*/
'allowed_sftp_ports' => array_map('intval', explode(',', env('BACKUP_ALLOWED_SFTP_PORTS', '22,2222'))),
];