1 | <?php |
||
2 | /** |
||
3 | * FastCGI Cache Bust plugin for Craft CMS 3.x |
||
4 | * |
||
5 | * Bust the Nginx FastCGI Cache when entries are saved or created. |
||
6 | * |
||
7 | * @link https://nystudio107.com |
||
0 ignored issues
–
show
Coding Style
introduced
by
![]() |
|||
8 | * @copyright Copyright (c) 2017 nystudio107 |
||
0 ignored issues
–
show
|
|||
9 | */ |
||
0 ignored issues
–
show
|
|||
10 | |||
11 | /** |
||
12 | * FastCGI Cache Bust config.php |
||
13 | * |
||
14 | * This file exists only as a template for the FastCGI Cache Bust settings. |
||
15 | * It does nothing on its own. |
||
16 | * |
||
17 | * Don't edit this file, instead copy it to 'craft/config' as 'fastcgi-cache-bust.php' |
||
18 | * and make your changes there to override default settings. |
||
19 | * |
||
20 | * Once copied to 'craft/config', this file will be multi-environment aware as |
||
21 | * well, so you can have different settings groups for each environment, just as |
||
22 | * you do for 'general.php' |
||
23 | */ |
||
24 | |||
25 | return [ |
||
26 | |||
27 | // Enter the full absolute path to the FastCGI Cache directory. |
||
28 | // If you require more than one FastCGI Cache directory cleared, separate the paths with a comma (,). |
||
29 | 'cachePath' => '', |
||
30 | |||
31 | ]; |
||
32 |