You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
phpvms/config/opcache.php

19 lines
484 B

<?php
return [
'url' => env('OPCACHE_URL', config('app.url')),
'verify_ssl' => true,
'headers' => [],
'directories' => [
base_path('app'),
base_path('bootstrap'),
base_path('public'),
base_path('resources/lang'),
base_path('routes'),
base_path('storage/framework/views'),
base_path('vendor/appstract'),
base_path('vendor/composer'),
base_path('vendor/laravel/framework'),
],
];