diff options
author | Christian Pointner <equinox@ffgraz.net> | 2008-12-06 07:23:29 +0000 |
---|---|---|
committer | Christian Pointner <equinox@ffgraz.net> | 2008-12-06 07:23:29 +0000 |
commit | 61448e4c2aabaf06cdae4160de77aaac8c7ad692 (patch) | |
tree | 52cf75f52eb999b9677af33c42556d1deec41372 /config.php | |
parent | 9cee05c341490e0329311a16c0d54a8c27ec5143 (diff) |
added data.php
Diffstat (limited to 'config.php')
-rw-r--r-- | config.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/config.php b/config.php new file mode 100644 index 0000000..063a41f --- /dev/null +++ b/config.php @@ -0,0 +1,21 @@ +<?php + +$conf['db']['user'] = 'ffscript'; +$conf['db']['password'] = 'woasinid'; +$conf['db']['host'] = 'localhost'; +$conf['db']['database'] = 'mappe'; + +$conf['topo']['file'] = 'topology.dot.plain'; + +/* neue eintraege bitte kommentieren !!!! */ +$conf['acl']['range'] = array( + "10.0.0.0/8", // Funkfeuer Graz Private + "83.64.208.18/32", // Funkfeuer Graz Nat + "193.33.150.0/23", // Funkfeuer Graz Public + "193.238.156.0/22", // Funkfeuer Wien + "89.106.208.0/21", // mur.at +// "84.119.56.63/32", // equinox home test + "212.17.113.195/32" // roland home wien +); + +?> |