mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-01 05:56:16 +00:00
307 lines
10 KiB
PHP
307 lines
10 KiB
PHP
<?php
|
|
|
|
use Opcodes\LogViewer\Enums\FolderSortingMethod;
|
|
use Opcodes\LogViewer\Enums\SortingOrder;
|
|
use Opcodes\LogViewer\Enums\Theme;
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer can be disabled, so it's no longer accessible via browser.
|
|
|
|
|
*/
|
|
|
|
'enabled' => env('LOG_VIEWER_ENABLED', true),
|
|
|
|
'api_only' => env('LOG_VIEWER_API_ONLY', false),
|
|
|
|
'require_auth_in_production' => true,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer Domain
|
|
|--------------------------------------------------------------------------
|
|
| You may change the domain where Log Viewer should be active.
|
|
| If the domain is empty, all domains will be valid.
|
|
|
|
|
*/
|
|
|
|
'route_domain' => null,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer Route
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer will be available under this URL.
|
|
|
|
|
*/
|
|
|
|
'route_path' => 'logs',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Back to system URL
|
|
|--------------------------------------------------------------------------
|
|
| When set, displays a link to easily get back to this URL.
|
|
| Set to `null` to hide this link.
|
|
|
|
|
| Optional label to display for the above URL.
|
|
|
|
|
*/
|
|
|
|
'back_to_system_url' => config('app.url', null),
|
|
|
|
'back_to_system_label' => null, // Displayed by default: "Back to {{ app.name }}"
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer time zone.
|
|
|--------------------------------------------------------------------------
|
|
| The time zone in which to display the times in the UI. Defaults to
|
|
| the application's timezone defined in config/app.php.
|
|
|
|
|
*/
|
|
|
|
'timezone' => null,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer datetime format.
|
|
|--------------------------------------------------------------------------
|
|
| The format used to display timestamps in the UI.
|
|
|
|
|
*/
|
|
|
|
'datetime_format' => 'Y-m-d H:i:s',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer route middleware.
|
|
|--------------------------------------------------------------------------
|
|
| Optional middleware to use when loading the initial Log Viewer page.
|
|
|
|
|
*/
|
|
|
|
'middleware' => [
|
|
'web',
|
|
'auth',
|
|
\App\Http\Middleware\MustBeAdminMiddleware::class,
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer API middleware.
|
|
|--------------------------------------------------------------------------
|
|
| Optional middleware to use on every API request. The same API is also
|
|
| used from within the Log Viewer user interface.
|
|
|
|
|
*/
|
|
|
|
'api_middleware' => [
|
|
\Opcodes\LogViewer\Http\Middleware\EnsureFrontendRequestsAreStateful::class,
|
|
'auth',
|
|
\App\Http\Middleware\MustBeAdminMiddleware::class,
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer Remote hosts.
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer supports viewing Laravel logs from remote hosts. They must
|
|
| be running Log Viewer as well. Below you can define the hosts you
|
|
| would like to show in this Log Viewer instance.
|
|
|
|
|
*/
|
|
|
|
'hosts' => [
|
|
'local' => [
|
|
'name' => 'local',
|
|
],
|
|
|
|
// 'staging' => [
|
|
// 'name' => 'Staging',
|
|
// 'host' => 'https://staging.example.com/log-viewer',
|
|
// 'auth' => [ // Example of HTTP Basic auth
|
|
// 'username' => 'username',
|
|
// 'password' => 'password',
|
|
// ],
|
|
// 'verify_server_certificate' => true,
|
|
// ],
|
|
//
|
|
// 'production' => [
|
|
// 'name' => 'Production',
|
|
// 'host' => 'https://example.com/log-viewer',
|
|
// 'auth' => [ // Example of Bearer token auth
|
|
// 'token' => env('LOG_VIEWER_PRODUCTION_TOKEN'),
|
|
// ],
|
|
// 'headers' => [
|
|
// 'X-Foo' => 'Bar',
|
|
// ],
|
|
// 'verify_server_certificate' => true,
|
|
// ],
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Include file patterns
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
'include_files' => [
|
|
'*.log',
|
|
'**/*.log',
|
|
|
|
// You can include paths to other log types as well, such as apache, nginx, and more.
|
|
// This key => value pair can be used to rename and group multiple paths into one folder in the UI.
|
|
'/var/log/httpd/*' => 'Apache',
|
|
'/var/log/nginx/*' => 'Nginx',
|
|
|
|
// MacOS Apple Silicon logs
|
|
'/opt/homebrew/var/log/nginx/*',
|
|
'/opt/homebrew/var/log/httpd/*',
|
|
'/opt/homebrew/var/log/php-fpm.log',
|
|
'/opt/homebrew/var/log/postgres*log',
|
|
'/opt/homebrew/var/log/redis*log',
|
|
'/opt/homebrew/var/log/supervisor*log',
|
|
|
|
// '/absolute/paths/supported',
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Exclude file patterns.
|
|
|--------------------------------------------------------------------------
|
|
| This will take precedence over included files.
|
|
|
|
|
*/
|
|
|
|
'exclude_files' => [
|
|
// 'my_secret.log'
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Hide unknown files.
|
|
|--------------------------------------------------------------------------
|
|
| The include/exclude options above might catch files which are not
|
|
| logs supported by Log Viewer. In that case, you can hide them
|
|
| from the UI and API calls by setting this to true.
|
|
|
|
|
*/
|
|
|
|
'hide_unknown_files' => true,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Shorter stack trace filters.
|
|
|--------------------------------------------------------------------------
|
|
| Lines containing any of these strings will be excluded from the full log.
|
|
| This setting is only active when the function is enabled via the user interface.
|
|
|
|
|
*/
|
|
|
|
'shorter_stack_trace_excludes' => [
|
|
'/vendor/symfony/',
|
|
'/vendor/laravel/framework/',
|
|
'/vendor/barryvdh/laravel-debugbar/',
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Cache driver
|
|
|--------------------------------------------------------------------------
|
|
| Cache driver to use for storing the log indices. Indices are used to speed up
|
|
| log navigation. Defaults to your application's default cache driver.
|
|
|
|
|
*/
|
|
|
|
'cache_driver' => env('LOG_VIEWER_CACHE_DRIVER', null),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Cache key prefix
|
|
|--------------------------------------------------------------------------
|
|
| Log Viewer prefixes all the cache keys created with this value. If for
|
|
| some reason you would like to change this prefix, you can do so here.
|
|
| The format of Log Viewer cache keys is:
|
|
| {prefix}:{version}:{rest-of-the-key}
|
|
|
|
|
*/
|
|
|
|
'cache_key_prefix' => 'lv',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Chunk size when scanning log files lazily
|
|
|--------------------------------------------------------------------------
|
|
| The size in MB of files to scan before updating the progress bar when searching across all files.
|
|
|
|
|
*/
|
|
|
|
'lazy_scan_chunk_size_in_mb' => 50,
|
|
|
|
'strip_extracted_context' => true,
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Per page options
|
|
|--------------------------------------------------------------------------
|
|
| Define the available options for number of results per page
|
|
|
|
|
*/
|
|
|
|
'per_page_options' => [10, 25, 50, 100, 250, 500],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Default settings for Log Viewer
|
|
|--------------------------------------------------------------------------
|
|
| These settings determine the default behaviour of Log Viewer. Many of
|
|
| these can be persisted for the user in their browser's localStorage,
|
|
| if the `use_local_storage` option is set to true.
|
|
|
|
|
*/
|
|
|
|
'defaults' => [
|
|
|
|
// Whether to use browser's localStorage to store user preferences.
|
|
// If true, user preferences saved in the browser will take precedence over the defaults below.
|
|
'use_local_storage' => true,
|
|
|
|
// Method to sort the folders. Other options: `Alphabetical`, `ModifiedTime`
|
|
'folder_sorting_method' => FolderSortingMethod::ModifiedTime,
|
|
|
|
// Order to sort the folders. Other options: `Ascending`, `Descending`
|
|
'folder_sorting_order' => SortingOrder::Descending,
|
|
|
|
// Order to sort the logs. Other options: `Ascending`, `Descending`
|
|
'log_sorting_order' => SortingOrder::Descending,
|
|
|
|
// Number of results per page. Must be one of the above `per_page_options` values
|
|
'per_page' => 25,
|
|
|
|
// Color scheme for the Log Viewer. Other options: `System`, `Light`, `Dark`
|
|
'theme' => Theme::System,
|
|
|
|
// Whether to enable `Shorter Stack Traces` option by default
|
|
'shorter_stack_traces' => false,
|
|
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Root folder prefix
|
|
|--------------------------------------------------------------------------
|
|
| The prefix for log files inside Laravel's `storage/logs` folder.
|
|
| Log Viewer does not show the full path to these files in the UI,
|
|
| but only the filename prefixed with this value.
|
|
|
|
|
*/
|
|
|
|
'root_folder_prefix' => 'root',
|
|
];
|