mirror of
https://github.com/daledavies/jump.git
synced 2025-11-17 18:30:42 +01:00
9 lines
367 B
PHP
9 lines
367 B
PHP
|
|
<?php
|
||
|
|
// Edit the configuration below to suit your requirements.
|
||
|
|
return [
|
||
|
|
'sitename' => getenv('SITENAME') ?: 'Jump',
|
||
|
|
'wwwroot' => getenv('WWWROOT') ?: '/var/www/html',
|
||
|
|
'cachebypass' => getenv('CACHEBYPASS') ?: false,
|
||
|
|
'cachedir' => getenv('CACHEDIR') ?: '/var/www/cache',
|
||
|
|
'noindex' => getenv('NOINDEX') ?: true,
|
||
|
|
];
|