15 lines
377 B
PHP
15 lines
377 B
PHP
<?php
|
|
|
|
require_once('/etc/hostas/definitions.php');
|
|
|
|
define('HOSTAS_DATABASE_PATH', '/var/db/hostas2.db');
|
|
define('HOSTAS_INSTALL_PATH', '/path/to/hostas2/website');
|
|
define('HOSTAS_DOMAIN', 'example.com');
|
|
define('HOSTAS_UNIX_USER', 'www-data');
|
|
|
|
define('HOSTAS_ACCESS_LIST', array(
|
|
'example.org' => HOSTAS_ACCESS_LEVEL->trusted
|
|
));
|
|
|
|
define('HOSTAS_MAX_POSTS_PER_PAGE', 50);
|