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

Legend:
Removed from v.2183  
changed lines
  Added in v.8528