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

revision 7095 by niro, Wed Sep 9 07:59:38 2015 UTC revision 8516 by niro, Mon Feb 8 09:27:56 2016 UTC
# Line 10  if( !isset($_SESSION['openclose']) ) Line 10  if( !isset($_SESSION['openclose']) )
10  }  }
11    
12  // Datenbankverbindungs-Konfiguration  // Datenbankverbindungs-Konfiguration
13  $dbhost  = "127.0.0.1";  $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  // fixed config.rc  // rdesktop default server
35  $configrc = $wwwroot."/share/config.rc";  $rdesktop_server = 'esa-ts-01.dom-aka-nt.intern';
36    
37  // fixed mage.rc  // rdesktop default domain name
38  $magerc = $wwwroot."/share/mage.rc";  $rdesktop_domain_name = 'DOM_AKA_NT';
39    
40  // default socket timeout for ssh conections  // mcore client port
41  $socket_timeout = 10;  $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  // ssh port of older clients
47  $privkey_file = $home.'/.ssh/id_dsa';  $ssh_port = 22;
48    
49  // citrix_browser addresses  // ping timout
50  $citrix_browseradrs = '128.20.50.50;128.20.50.66;128.20.50.71;128.20.50.46;128.20.100.31;128.20.100.32;128.20.100.33;128.20.100.34';  $ping_timeout = 0.01;
   
 // citrix default domain name  
 $citrix_domain_name = 'DOM_AKA_NT';  
51    
52  ?>  ?>

Legend:
Removed from v.7095  
changed lines
  Added in v.8516