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 1600 by niro, Thu Dec 2 19:56:40 2010 UTC alx-src/branches/alx-web-070/include/config.inc.php revision 8528 by niro, Mon Feb 8 10:08:23 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    }
11   // Datenbankverbindungs-Konfiguration  
12   $dbhost  = "localhost";  // Datenbankverbindungs-Konfiguration
13   $dbname  = "alx_web";  $dbhost  = "mcored"; // -> /etc/hosts 127.0.0.1 mcored required, >php-5.4 uses the certificate common name as issuer
14   $dbuname = "alx_install";  $dbname  = "mcore";
15   $dbpass  = "@lx";  $dbuname = "alx_install";
16    $dbpass  = "@lx";
17   // Home Verzeichnis des httpd-daemons für ssh-certs  
18   $home = "/var/www";  // wake-on-lan Kommando
19    $woliface = "eth0";
20   // ping Kommando zum überprüfen der Errreichbarkeit der Hosts  $wolcmd = "/usr/bin/ether-wake -i ".$woliface;
21   $pingcmd = "/usr/bin/fping -c 1 -t 50 -q";  
22    // citrix_browser addresses
23   // ssh Kommando  $citrix_serverlist = 'ica.dom-aka-nt.intern';
24   $sshcmd = "/usr/bin/ssh";  
25    // citrix default domain name
26   // wake-on-lan Kommando  $citrix_domain_name = 'DOM_AKA_NT';
27   $wolcmd = "/usr/sbin/etherwake";  
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.1600  
changed lines
  Added in v.8528