-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.dist.php
35 lines (31 loc) · 998 Bytes
/
config.dist.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
// core config parameters
$sDefaultLanguage = "en-gb";
$sConfigDefaultView = "thismonth.all";
$bConfigChangeSites = true;
$bConfigUpdateSites = true;
$sUpdateSiteFilename = "xml_update.php";
// individual site configuration
$aConfig["site1"] = array(
"statspath" => "/path/to/data/",
"updatepath" => "/path/to/awstats.pl/",
"siteurl" => "http://www.my-1st-domain.com",
"sitename" => "",
"theme" => "default",
"fadespeed" => 250,
"password" => "my-1st-password",
"includes" => "",
"language" => "en-gb"
);
$aConfig["site2"] = array(
"statspath" => "/path/to/data/",
"updatepath" => "/path/to/awstats.pl/",
"siteurl" => "http://www.my-2nd-domain.com",
"sitename" => "",
"theme" => "default",
"fadespeed" => 250,
"password" => "my-2nd-password",
"includes" => "",
"language" => "en-gb"
);
?>