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 7131 by niro, Tue Sep 15 06:31:30 2015 UTC revision 8531 by niro, Mon Feb 8 10:37:04 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    
 // www root of the alx_install  
 $wwwroot = "/var/www/htdocs/alx-web-070";  
   
 // Home Verzeichnis des httpd-daemons für ssh-certs  
 $home = "/var/lib/apache";  
   
 // ssh Kommando  
 $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";  
   
18  // wake-on-lan Kommando  // wake-on-lan Kommando
19  $wolcmd = "/usr/bin/ether-wake";  $woliface = "eth0";
20    $wolcmd = "/usr/bin/ether-wake -i ".$woliface;
 // fixed config.rc  
 $configrc = $wwwroot."/share/config.rc";  
   
 // fixed mage.rc  
 $magerc = $wwwroot."/share/mage.rc";  
   
 // default socket timeout for ssh conections  
 $socket_timeout = 10;  
   
 // ssh public key file  
 $pubkey_file = $home.'/.ssh/id_dsa.pub';  
   
 // ssh private key file  
 $privkey_file = $home.'/.ssh/id_dsa';  
21    
22  // citrix_browser addresses  // citrix_browser addresses
23  $citrix_browseradrs = 'ica.dom-aka-nt.intern';  $citrix_serverlist = 'ica.dom-aka-nt.intern';
24    
25  // citrix default domain name  // citrix default domain name
26  $citrix_domain_name = 'DOM_AKA_NT';  $citrix_domain_name = 'DOM_AKA_NT';
27    
28  // storefront store  // storefront store
29  $storefront_store = 'https://storefront.dom-aka-nt.intern';  $storefront_store = 'https://storefront.dom-aka-nt.intern/Citrix/ALX/PNAgent/config.xml';
30    
31  // storefront default domain name  // storefront default domain name
32  $storefront_domain_name = 'DOM_AKA_NT';  $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  // mcore client port
41  $mcore_port = 6666;  $mcore_port = 6666;
42    
43  // ssh port of older clients  // mcore certificate
44  $ssh_port = 22;  $mcore_certificate = '/etc/ssl/certs/mcored.pem';
45    
46  // ping timout  // ping timout
47  $ping_timeout = 0.01;  $ping_timeout = 0.01;

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