Server IP : 127.0.1.1 / Your IP : 216.73.216.172 Web Server : Apache/2.4.52 (Ubuntu) System : Linux bahcrestlinepropertiesllc 5.15.0-113-generic #123-Ubuntu SMP Mon Jun 10 08:16:17 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/root/var/www/bahcrestline/core/config/ |
Upload File : |
<?php use Illuminate\Validation\Rule; $SERVER_NAME = (@$_SERVER['SERVER_NAME'] != "") ? @$_SERVER['SERVER_NAME'] : "localhost"; if (!checkdnsrr($SERVER_NAME, 'NS')) { $permissions = [ 'storage/framework/' => '', 'storage/logs/' => '', 'bootstrap/cache/' => '', ]; } else { $permissions = [ 'storage/framework/' => '755', 'storage/logs/' => '755', 'bootstrap/cache/' => '755', '../uploads/' => '755', '../uploads/banners' => '755', '../uploads/contacts' => '755', '../uploads/inbox' => '755', '../uploads/pattern' => '755', '../uploads/sections' => '755', '../uploads/settings' => '755', '../uploads/topics' => '755', '../uploads/users' => '755', ]; } return [ /* |-------------------------------------------------------------------------- | Server Requirements |-------------------------------------------------------------------------- | | This is the default Laravel server requirements, you can add as many | as your application require, we check if the extension is enabled | by looping through the array and run "extension_loaded" on it. | */ 'core' => [ 'minPhpVersion' => '7.2.0' ], 'final' => [ 'key' => true, 'publish' => false ], 'requirements' => [ 'php' => [ 'openssl', 'pdo', 'mbstring', 'tokenizer', 'JSON', 'cURL', 'bcmath', 'ctype', 'xml', ], 'apache' => [ 'mod_rewrite', ], ], /* |-------------------------------------------------------------------------- | Folders Permissions |-------------------------------------------------------------------------- | | This is the default Laravel folders permissions, if your application | requires more permissions just add them to the array list bellow. | */ 'permissions' => $permissions, /* |-------------------------------------------------------------------------- | Environment Form Wizard Validation Rules & Messages |-------------------------------------------------------------------------- | | This are the default form vield validation rules. Available Rules: | https://laravel.com/docs/5.4/validation#available-validation-rules | */ 'environment' => [ 'form' => [ 'rules' => [ 'app_name' => 'required|string|max:50', 'environment' => 'required|string|max:50', 'environment_custom' => 'required_if:environment,other|max:50', 'app_debug' => [ 'required', Rule::in(['true', 'false']), ], 'app_log_level' => 'required|string|max:50', 'app_url' => 'required|url', 'database_connection' => 'required|string|max:50', 'database_hostname' => 'required|string|max:50', 'database_port' => 'required|numeric', 'database_name' => 'required|string|max:50', 'database_username' => 'required|string|max:50', 'database_password' => 'required|string|max:50', ], ], ], /* |-------------------------------------------------------------------------- | Installed Middlware Options |-------------------------------------------------------------------------- | Different available status switch configuration for the | canInstall middleware located in `canInstall.php`. | */ 'installed' => [ 'redirectOptions' => [ 'route' => [ 'name' => 'adminHome', 'data' => [], ], 'abort' => [ 'type' => '404', ], 'dump' => [ 'data' => 'Dumping a not found message.', ] ], ], /* |-------------------------------------------------------------------------- | Selected Installed Middlware Option |-------------------------------------------------------------------------- | The selected option fo what happens when an installer intance has been | Default output is to `/resources/views/error/404.blade.php` if none. | The available middleware options include: | route, abort, dump, 404, default, '' | */ 'installedAlreadyAction' => [ 'route' => [ 'name' => 'Home', 'data' => [], ] ], /* |-------------------------------------------------------------------------- | Updater Enabled |-------------------------------------------------------------------------- | Can the application run the '/update' route with the migrations. | The default option is set to False if none is present. | Boolean value | */ 'updaterEnabled' => 'false', ];