mirror of
https://github.com/NyaaStudios/nyaabooru.git
synced 2025-12-10 05:42:58 +00:00
add models, setup livewire, setup mongodb
This commit is contained in:
parent
9a47b58881
commit
c0590a3412
19 changed files with 1281 additions and 318 deletions
|
|
@ -90,6 +90,16 @@ return [
|
|||
'driver' => 'octane',
|
||||
],
|
||||
|
||||
'mongodb' => [
|
||||
'driver' => 'mongodb',
|
||||
'connection' => 'mongodb',
|
||||
'collection' => 'cache',
|
||||
'lock_connection' => 'mongodb',
|
||||
'lock_collection' => 'cache_locks',
|
||||
'lock_lottery' => [2, 100],
|
||||
'lock_timeout' => 86400,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -60,6 +60,11 @@ return [
|
|||
'report' => false,
|
||||
],
|
||||
|
||||
'gridfs' => [
|
||||
'driver' => 'gridfs',
|
||||
'connection' => 'mongodb',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -35,4 +35,11 @@ return [
|
|||
],
|
||||
],
|
||||
|
||||
'authentik' => [
|
||||
'base_url' => env('AUTHENTIK_BASE_URL'),
|
||||
'client_id' => env('AUTHENTIK_CLIENT_ID'),
|
||||
'client_secret' => env('AUTHENTIK_CLIENT_SECRET'),
|
||||
'redirect' => env('AUTHENTIK_REDIRECT_URI'),
|
||||
],
|
||||
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue