Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mertasan authored Mar 10, 2024
1 parent ffba01c commit 25e19a0
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions config/cloudflare-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,23 @@
declare(strict_types=1);

return [
'debug' => env('CLOUDFLARE_CACHE_DEBUG', false),
'debug' => env('CLOUDFLARE_CACHE_DEBUG', false),

// your cloudflare email address
'api_email' => env('CLOUDFLARE_CACHE_EMAIL'),
/**
* Cloudflare E-mail address.
*/
'api_email' => env('CLOUDFLARE_CACHE_EMAIL'),

// Generate global api key https://dash.cloudflare.com/profile/api-tokens
'api_key' => env('CLOUDFLARE_CACHE_KEY'),
/**
* Generate global api key.
*
* @see https://dash.cloudflare.com/profile/api-tokens
*/
'api_key' => env('CLOUDFLARE_CACHE_KEY'),

// zone_id of your site on cloudflare dashboard
/**
* zone_id of your site on cloudflare dashboard.
*/
'identifier' => env('CLOUDFLARE_CACHE_IDENTIFIER'),

'default_cache_ttl' => env('CLOUDFLARE_DEFAULT_CACHE_TTL'),
Expand Down

0 comments on commit 25e19a0

Please sign in to comment.