1
0
orblog-legacy/config.php

46 lines
1.3 KiB
PHP
Raw Normal View History

2024-07-13 18:19:16 +02:00
<?php
/*-----------------------------------------------------------------------------
orblog - Simple blog for hidden networks.
Version: 0.1
Git: https://code.fossee.net/chicory/orblog-legacy
Copyright: chicory@fossee.net 2020
License: http://www.apache.org/licenses/LICENSE-2.0
-----------------------------------------------------------------------------*/
// Path to database.
define('DATABASE', 'private/data/data.sqlite');
// URL with ending "/".
define('URL', 'http://orblog.local/');
// Language (en, ru).
define('LANG', 'en');
// Admin password.
define('PASS', 'changeme');
// Title.
define('TITLE', 'orblog - simple blog');
// Text logo in header.
define('TEXTLOGO','orblog');
// Header text.
define('H_DESC', 'Simple blog for hidden services with markdown support. Read README.md for more info or visit <a href="https://code.fossee.net/chicory/orblog-legacy">https://code.fossee.net/chicory/orblog-legacy</a>');
// Copyright.
define('COPY', 'orblog 2020');
// Max. posts per page.
define('MAXPOSTS', 10);
// Allow comments.
define('COMMENTS', true);
// Antiflood.
define('ANTIFLOOD', 30);