37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
<?php
|
|
/*****************************************************************************
|
|
* config.php
|
|
* Contains general settings for the project.
|
|
*
|
|
* Kabuki CMS (C) 2013-2015, Aaron van Geffen
|
|
*****************************************************************************/
|
|
|
|
const DEBUG = true;
|
|
const CACHE_ENABLED = true;
|
|
const CACHE_KEY_PREFIX = 'hashru_';
|
|
|
|
// Basedir and base URL of the project.
|
|
const BASEDIR = __DIR__;
|
|
const BASEURL = 'https://pics.hashru.nl'; // no trailing /
|
|
|
|
// Reply-To e-mail header address
|
|
const REPLY_TO_ADDRESS = 'no-reply@my.domain.tld';
|
|
|
|
// Assets dir and url, where assets are plentiful. (In wwwroot!)
|
|
const ASSETSDIR = BASEDIR . '/public/assets';
|
|
const ASSETSURL = BASEURL . '/assets';
|
|
|
|
// Thumbs dir and url, where thumbnails for assets reside.
|
|
const THUMBSDIR = BASEDIR . '/public/thumbs';
|
|
const THUMBSURL = BASEURL . '/thumbs';
|
|
|
|
// Database server, username, password, name
|
|
const DB_SERVER = '127.0.0.1';
|
|
const DB_USER = 'hashru';
|
|
const DB_PASS = '';
|
|
const DB_NAME = 'hashru_pics';
|
|
const DB_LOG_QUERIES = false;
|
|
|
|
const SITE_TITLE = 'HashRU Pics';
|
|
const SITE_SLOGAN = 'Nijmeegs Nerdclubje';
|