summaryrefslogtreecommitdiff
path: root/default-conf/var_www_includes
diff options
context:
space:
mode:
Diffstat (limited to 'default-conf/var_www_includes')
-rwxr-xr-xdefault-conf/var_www_includes/config.php51
-rw-r--r--default-conf/var_www_includes/config_IAX.php9
-rwxr-xr-xdefault-conf/var_www_includes/config_db.php6
-rwxr-xr-xdefault-conf/var_www_includes/config_jabber.php17
-rw-r--r--default-conf/var_www_includes/config_modem.php11
5 files changed, 94 insertions, 0 deletions
diff --git a/default-conf/var_www_includes/config.php b/default-conf/var_www_includes/config.php
new file mode 100755
index 00000000..07d4fb03
--- /dev/null
+++ b/default-conf/var_www_includes/config.php
@@ -0,0 +1,51 @@
+<?PHP
+// Adresse des Webservers
+$url = "https://SEDENGELURL/";
+
+// Startverzeichnis des Engelhome
+$ENGEL_ROOT = "/";
+
+// System disable message, ist ist set is: bages schow only this text
+//$SystemDisableMessage="<H1>This system ist moved to a server in the BCC, you can in the moment only youse it in the in Engel Room</H1>";
+
+// 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";
+
+// the archangels
+$arch_angels="fnord";
+
+// timezonen offsett
+$gmdateOffset=3600;
+
+// für Developen 1, sonst = 0
+$DEBUG = 0;
+
+// SSL Cert-KEY
+$show_SSLCERT = "MD5:<br>MD5SED<br>\n".
+ "SHA1:<br>SHA1SED";
+
+//globale const. fuer schischtplan
+$GlobalZeileProStunde = 4;
+
+//Tempdir
+$Tempdir="./tmp";
+
+// local timezone
+date_default_timezone_set("Europe/Berlin");
+
+//Pentabarf ConferenzDI für UpdateDB
+$PentabarfXMLhost = "cccv.pentabarf.org";
+$PentabarfXMLpath = "Xcal/conference/";
+$PentabarfXMLEventID = "31";
+$PentabarfGetWith = "fsockopen"; // "fsockopen"/"fopen"/"wget"/"lynx"
+
+?>
diff --git a/default-conf/var_www_includes/config_IAX.php b/default-conf/var_www_includes/config_IAX.php
new file mode 100644
index 00000000..f5bdeaeb
--- /dev/null
+++ b/default-conf/var_www_includes/config_IAX.php
@@ -0,0 +1,9 @@
+<?PHP
+
+$IAXenable = TRUE;
+
+//Setting Asterisk
+$IAXcontent="Engelsystem";
+$IAXserver="Engelsystem:engelengel@10.1.1.1";
+
+?>
diff --git a/default-conf/var_www_includes/config_db.php b/default-conf/var_www_includes/config_db.php
new file mode 100755
index 00000000..d959be90
--- /dev/null
+++ b/default-conf/var_www_includes/config_db.php
@@ -0,0 +1,6 @@
+<?php
+include("funktion_db.php");
+
+$con = mysql_connect("localhost", "root", "changeme") or die ("connection failed");
+$sel = mysql_select_db("tabel") or die (mysql_error());
+?>
diff --git a/default-conf/var_www_includes/config_jabber.php b/default-conf/var_www_includes/config_jabber.php
new file mode 100755
index 00000000..13cd3538
--- /dev/null
+++ b/default-conf/var_www_includes/config_jabber.php
@@ -0,0 +1,17 @@
+<?php
+
+ $server = "jabber.berlin.ccc.de";
+ $port = "5222";
+
+ $username = "";
+ $password = "";
+ $resource = "";
+
+ $jabber_recipient = array( "xyz@jabber.berlin.ccc.de",
+ "xyz2@jabber.berlin.ccc.de",
+ );
+
+ $mail_subject = "Pentabarf Error";
+ $mail_recipient = array("xyz@abc.de", "xyz@abc.de");
+
+?>
diff --git a/default-conf/var_www_includes/config_modem.php b/default-conf/var_www_includes/config_modem.php
new file mode 100644
index 00000000..0625936d
--- /dev/null
+++ b/default-conf/var_www_includes/config_modem.php
@@ -0,0 +1,11 @@
+<?PHP
+
+//ist ein modem angeschlossen
+$ModemEnable = false;
+
+// COM port
+$ModemDev="/dev/ttyS0";
+
+// vorwahl, bei tnovis telefonanlage für das programmieren von weckrufen
+$WackupNumber="**3";
+?>