Magellan Linux

Diff of /alx-src/branches/alx-web-070/include/config.inc.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

alx-src/branches/alx-web-050/include/config.inc.php revision 1608 by niro, Thu Dec 2 22:13:04 2010 UTC alx-src/branches/alx-web-070/include/config.inc.php revision 8531 by niro, Mon Feb 8 10:37:04 2016 UTC
# Line 1  Line 1 
1  <?  <?
2   // SESSION  
3   session_start();  // SESSION
4   if( !isset($_SESSION['openclose']) )  session_start();
5   {  if( !isset($_SESSION['openclose']) )
6   session_register('openclose');  {
7   $_SESSION['openclose'] = array();   //session_register('openclose');
8   }   //$_SESSION['openclose'] = $openclose;
9     $_SESSION['openclose'] = array();
10   // Datenbankverbindungs-Konfiguration  }
11   $dbhost  = "localhost";  
12   $dbname  = "alx_web";  // Datenbankverbindungs-Konfiguration
13   $dbuname = "alx_install";  $dbhost  = "mcored"; // -> /etc/hosts 127.0.0.1 mcored required, >php-5.4 uses the certificate common name as issuer
14   $dbpass  = "@lx";  $dbname  = "mcore";
15    $dbuname = "alx_install";
16   // Home Verzeichnis des httpd-daemons für ssh-certs  $dbpass  = "@lx";
17   $home = "/var/lib/apache";  
18    // wake-on-lan Kommando
19   // ping Kommando zum überprüfen der Errreichbarkeit der Hosts  $woliface = "eth0";
20   $pingcmd = "/usr/sbin/fping -c 1 -t 50 -q";  $wolcmd = "/usr/bin/ether-wake -i ".$woliface;
21    
22   // ssh Kommando  // citrix_browser addresses
23   $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";  $citrix_serverlist = 'ica.dom-aka-nt.intern';
24    
25   // wake-on-lan Kommando  // citrix default domain name
26   $wolcmd = "/usr/bin/etherwake";  $citrix_domain_name = 'DOM_AKA_NT';
27  ?>  
28    // storefront store
29    $storefront_store = 'https://storefront.dom-aka-nt.intern/Citrix/ALX/PNAgent/config.xml';
30    
31    // storefront default domain name
32    $storefront_domain_name = 'DOM_AKA_NT';
33    
34    // rdesktop default server
35    $rdesktop_server = 'esa-ts-01.dom-aka-nt.intern';
36    
37    // rdesktop default domain name
38    $rdesktop_domain_name = 'DOM_AKA_NT';
39    
40    // mcore client port
41    $mcore_port = 6666;
42    
43    // mcore certificate
44    $mcore_certificate = '/etc/ssl/certs/mcored.pem';
45    
46    // ping timout
47    $ping_timeout = 0.01;
48    
49    ?>

Legend:
Removed from v.1608  
changed lines
  Added in v.8531