mirror of
https://github.com/daledavies/jump.git
synced 2026-01-26 17:19:05 +01:00
20 lines
729 B
PHP
20 lines
729 B
PHP
<?php
|
|
/**
|
|
* Edit the configuration below to suit your requirements.
|
|
*
|
|
* @author Dale Davies <dale@daledavies.co.uk>
|
|
* @license MIT
|
|
*/
|
|
|
|
return [
|
|
// The site name is displayed in the browser tab.
|
|
'sitename' => getenv('SITENAME') ?: 'Jump',
|
|
// Where on the this code is located.
|
|
'wwwroot' => getenv('WWWROOT') ?: '/var/www/html',
|
|
// Stop retrieving items from the cache, useful for testing.
|
|
'cachebypass' => getenv('CACHEBYPASS') ?: false,
|
|
// Where is the cache storage directory, should not be public.
|
|
'cachedir' => getenv('CACHEDIR') ?: '/var/www/cache',
|
|
// Include the robots noindex meta tag in site header.
|
|
'noindex' => getenv('NOINDEX') ?: true,
|
|
]; |