| 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 [
/*
|--------------------------------------------------------------------------
| Session Security
|--------------------------------------------------------------------------
|
| These options control session security features including IP checking
| for session hijacking prevention and session regeneration intervals.
|
*/
'check_session_ip' => env('SECURITY_CHECK_SESSION_IP', false),
'session_regenerate_minutes' => env('SECURITY_SESSION_REGENERATE_MINUTES', 30),
/*
|--------------------------------------------------------------------------
| Two-Factor Authentication
|--------------------------------------------------------------------------
|
| Configure two-factor authentication settings including the issuer name
| that appears in authenticator apps.
|
*/
'two_factor' => [
'issuer' => env('TWO_FACTOR_ISSUER', env('APP_NAME', 'Laravel')),
'digits' => 6,
'window' => 1, // Allow codes from 1 period before/after current
],
/*
|--------------------------------------------------------------------------
| File Encryption
|--------------------------------------------------------------------------
|
| Configure file encryption settings for sensitive file storage.
|
*/
'file_encryption' => [
'cipher' => 'AES-256-CBC',
'enabled' => env('FILE_ENCRYPTION_ENABLED', false),
],
/*
|--------------------------------------------------------------------------
| Security Headers
|--------------------------------------------------------------------------
|
| Configure security headers. These are applied by the SecurityHeaders
| middleware to all responses.
|
*/
'headers' => [
'hsts_enabled' => env('SECURITY_HSTS_ENABLED', true),
'hsts_max_age' => env('SECURITY_HSTS_MAX_AGE', 31536000),
'frame_options' => env('SECURITY_FRAME_OPTIONS', 'SAMEORIGIN'),
],
];