diff options
author | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2005-09-10 17:25:43 +0000 |
---|---|---|
committer | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2005-09-10 17:25:43 +0000 |
commit | 310c2ce98fc8c0e94559c9ed8587101d92f6e853 (patch) | |
tree | 7093065a133e434fb7e551803e8700661d04c5bb /inc/config.php |
add total system
git-svn-id: svn://svn.cccv.de/engel-system@1 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'inc/config.php')
-rwxr-xr-x | inc/config.php | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/inc/config.php b/inc/config.php new file mode 100755 index 00000000..d9ebb624 --- /dev/null +++ b/inc/config.php @@ -0,0 +1,39 @@ +<? + +// Adresse des Webservers +$url = "https://linuxeurobook/"; + +// Startverzeichnis des Engelhome +$ENGEL_ROOT = "/engel/"; + +// Anzahl der News, die auf einer Seite ausgeben werden koennen... +$DISPLAY_NEWS = 6; + +// Anzahl Stunden bis zum Austragen eigener Schichten +$LETZTES_AUSTRAGEN=3; + +//Setzt den zu verwendenden Crypto algorismis +// mp5 oder crypt +// achtung crypt schaltet password ändern ab +$crypt_system="md5"; +//$crypt_system="crypt"; + + +// für Developen 1, sonst = 0 +$DEBUG = 0; + +//the link to the CCC page +//$CCC_Start = "https://pentabarf.cccv.de/pentabarf/event/"; +$CCC_Start = "http://www.ccc.de/congress/2004/fahrplan/event/"; +$CCC_End = ".de.html"; + +// SSL Cert-KEY +$show_SSLCERT = "MD5:<br>AF:32:B9:BE:3F:AE:53:78:1E:1B:6E:82:48:E0:DB:94<br>SHA1:<br>B8:07:E8:A4:F3:1A:EF:03:81:C2:44:0C:50:25:3D:1A:A0:E4:AA:76"; + +//globale const. fuer schischtplan +$GlobalZeileProStunde = 4; + +//ist ein modem angeschlossen +$ModemEnable = false; + +?> |