view mconfig.inc.php.example @ 179:9c20703a7a61

Rename fap.css to site.css.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 07 Nov 2013 07:07:22 +0200
parents 5837b9333964
children a3f0f2a3551a
line wrap: on
line source

<?
// Site configuration, important settings that MUST be reviewed and set
// correctly, and generally should not be changed afterwards ...
// Apart from the debug, and timeout settings.
$siteSettings = array(
//  "admPassword"     => "xxx",
  "sqlDB"           => "sqlite:fap.sqlite3",

  "debug"           => false,

  "defaultPage"     => "about", // Default page

  "userKeyLength"   => 8,
  "voteMin"         => -1,
  "voteMax"         => 2,

  "voteKeyMode"     => -1, // See msite.inc.php for VOTE_*

  "voteTimeout"     => 120,
  "admTimeout"      => 15,
);

date_default_timezone_set("Europe/Helsinki");

$securePages = array(
  "/fap2012/admin" => true,
  "/fap2012/register" => true,
  "/fap2012/vote" => false,
);


$pageTitle = "Finnish Amiga Party 2022";
$pageCharset = "utf-8";
$pageCSS = "site.css";

?>