⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.101
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
taxi.dev-unit.com
/
config
/
View File Name :
larecipe.php
<?php return [ /* |-------------------------------------------------------------------------- | Documentation Routes |-------------------------------------------------------------------------- | | These options configure the behavior of the LaRecipe docs basic route | where you can specify the url of your documentations, the location | of your docs and the landing page when a user visits /docs route. | | */ 'docs' => [ 'route' => '/user-manual', 'path' => '/resources/docs', 'landing' => 'admin-user-manual', 'middleware' => ['web'], ], /* |-------------------------------------------------------------------------- | Documentation Versions |-------------------------------------------------------------------------- | | Here you may specify and set the versions and the default (latest) one | of your documentation's versions where you can redirect the user to. | Just make sure that the default version is in the published list. | | */ 'versions' => [ 'default' => '1.0', 'published' => [ '1.0', '2.0' ] ], /* |-------------------------------------------------------------------------- | Documentation Settings |-------------------------------------------------------------------------- | | These options configure the additional behaviors of your documentation | where you can limit the access to only authenticated users in your | system. It is false initially so that guests can view your docs. | Middleware can be defined if auth is set to false. For example, if you want all users to be able to access your docs, | use web middleware. If you want just auth users, use auth middleware. Or, make your own middleware | to handle who can see your docs (don't forget to use gates for more granular control!). | | */ 'settings' => [ 'auth' => false, 'ga_id' => '', // 'middleware' => [ // 'web', // 'auth:web' // ] // 'auth:web' ], /* |-------------------------------------------------------------------------- | Cache |-------------------------------------------------------------------------- | | Obviously rendering markdown at the back-end is costly especially if | the rendered files are massive. Thankfully, caching is considered | as a good option to speed up your app when having high traffic. | | Caching period unit: minutes | */ 'cache' => [ 'enabled' => false, 'period' => 5 ], /* |-------------------------------------------------------------------------- | Search |-------------------------------------------------------------------------- | | Here you can add configure the search functionality of your docs. | You can choose the default engine of your search from the list | However, you can also enable/disable the search's visibility | | Supported Search Engines: 'algolia', 'internal' | */ 'search' => [ 'enabled' => false, 'default' => 'algolia', 'engines' => [ 'internal' => [ 'index' => ['h2', 'h3'] ], 'algolia' => [ 'key' => '', 'index' => '' ] ] ], /* |-------------------------------------------------------------------------- | Appearance |-------------------------------------------------------------------------- | | Here you can add configure the appearance of your docs. For example, | you can set the primary and secondary colors that will give your | documentation a unique look. You can set the fav of your docs. | | */ 'ui' => [ 'code_theme' => 'light', // or: light 'fav' => '', // eg: fav.png 'colors' => [ 'primary' => '#787AF6', 'secondary' => '#2b9cf2' ] ], /* |-------------------------------------------------------------------------- | SEO |-------------------------------------------------------------------------- | | These options configure the SEO settings of your docs. You can set the | author, the description and the keywords. Also, LaRecipe by default | sets the canonical link to the viewed page's link automatically. | | */ 'seo' => [ 'author' => '', 'description' => '', 'keywords' => '', 'og' => [ 'title' => '', 'type' => 'article', 'url' => '', 'image' => '', 'description' => '', ] ], /* |-------------------------------------------------------------------------- | Forum |-------------------------------------------------------------------------- | | Giving a chance to your users to post their questions or feedback | directly on your docs, is pretty nice way to engage them more. | However, you can also enable/disable the forum's visibility. | | Supported Services: 'disqus' | */ 'forum' => [ 'enabled' => false, 'default' => 'disqus', 'services' => [ 'disqus' => [ 'site_name' => '', // yoursite.disqus.com ] ] ], /* |-------------------------------------------------------------------------- | Components and Packages |-------------------------------------------------------------------------- | | Once you create a new asset or theme, its directory will be | published under `larecipe-components` folder. However, If | you want a different location, feel free to change it. | | */ 'packages' => [ 'path' => 'larecipe-components', ], 'blade-parser' => [ 'regex' => [ 'code-blocks' => [ 'match' => '/\<pre\>(.|\n)*?<\/pre\>/', 'replacement' => '<code-block>', ] ] ] ];