diff options
author | Christian Pointner <equinox@spreadspace.org> | 2016-08-17 22:14:48 +0200 |
---|---|---|
committer | Christian Pointner <equinox@spreadspace.org> | 2016-08-17 22:14:48 +0200 |
commit | bed226f38fe11e04556ceef5b0d685a8f4e27edb (patch) | |
tree | ba8e01b48d37e080aef547a83c4be21cc2bfc6b1 /config.php | |
parent | c556840ba2222071b6571cf4a108707fc008a124 (diff) |
moved database config to seperate file which is not part of the repo
Diffstat (limited to 'config.php')
-rw-r--r-- | config.php | 15 |
1 files changed, 6 insertions, 9 deletions
@@ -1,20 +1,17 @@ <?php -$conf['db']['user'] = 'ffscript'; -$conf['db']['password'] = 'woasinid'; -$conf['db']['host'] = 'localhost'; -$conf['db']['database'] = 'mappe'; +require_once("db-config.php"); $conf['topo']['file'] = 'topology.dot.plain'; $conf['router']['file'] = 'InfoRouter.plain'; /* neue eintraege bitte kommentieren !!!! */ $conf['acl']['range'] = array( - "10.0.0.0/8", // Funkfeuer Graz et.al Private Adressen - "193.33.150.0/23", // Funkfeuer Graz Public - "217.29.149.64/28", // 0xFF Citycom IP Bereich - "193.238.156.0/22", // Funkfeuer Wien - "89.106.208.0/21" // mur.at + "10.0.0.0/8", // Funkfeuer Graz et.al Private Adressen + "193.33.150.0/23", // Funkfeuer Graz Public + "217.29.149.64/28", // 0xFF Citycom IP Bereich + "193.238.156.0/22", // Funkfeuer Wien + "89.106.208.0/21" // mur.at ); ?> |