Add Superuser Logging Dashboard

This commit is contained in:
2024-03-31 13:07:25 +02:00
parent aa7020c19d
commit 5afbe54268
13 changed files with 320 additions and 25 deletions

29
config/matomotracker.php Normal file
View File

@@ -0,0 +1,29 @@
<?php
return [
/**
* The URL of your Matomo install
*/
'url' => env('MATOMO_URL', 'https://matomo.soson.eu'),
/**
* The id of the site that should be tracked
*/
'idSite' => env('MATOMO_SITE_ID', 3),
/**
* The auth token of your user
*/
'tokenAuth' => env('MATOMO_AUTH_TOKEN', ''),
/**
* For queuing the tracking you can use custom queue names. Use 'default' if you want to run the queued items within the standard queue.
*/
'queue' => env('MATOMO_QUEUE', 'matomotracker'),
/**
* Optionally set a custom queue connection. Laravel defaults to "sync".
*/
'queueConnection' => env('MATOMO_QUEUE_CONNECTION', 'default'),
];