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 7094 by niro, Wed Sep 9 07:58:49 2015 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    
# Line 17  $dbpass  = "@lx"; Line 18  $dbpass  = "@lx";
18  // www root of the alx_install  // www root of the alx_install
19  $wwwroot = "/var/www/htdocs";  $wwwroot = "/var/www/htdocs";
20    
21  // Home Verzeichnis des httpd-daemons für ssh-certs  // Home Verzeichnis des httpd-daemons für ssh-certs
22  $home = "/var/lib/apache";  $home = "/var/lib/apache";
23    
24  // ping Kommando zum überprüfen der Errreichbarkeit der Hosts  // ping Kommando zum überprüfen der Errreichbarkeit der Hosts
25  $pingcmd = "/usr/sbin/fping -c 1 -t 50 -q";  $pingcmd = "/usr/sbin/fping -c 1 -t 50 -q";
26    
27  // ssh Kommando  // ssh Kommando
# Line 35  $configrc = $wwwroot."/share/config.rc"; Line 36  $configrc = $wwwroot."/share/config.rc";
36  // fixed mage.rc  // fixed mage.rc
37  $magerc = $wwwroot."/share/mage.rc";  $magerc = $wwwroot."/share/mage.rc";
38    
39    // default socket timeout for ssh conections
40    $socket_timeout = 10;
41    
42  // ssh public key file  // ssh public key file
43  $pubkey_file = $home.'/.ssh/id_dsa.pub';  $pubkey_file = $home.'/.ssh/id_dsa.pub';
44    
45  // ssh private key file  // ssh private key file
46  $privkey_file = $home.'/.ssh/id_dsa';  $privkey_file = $home.'/.ssh/id_dsa';
47    
48    // citrix_browser addresses
49    $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';
50    
51    // citrix default domain name
52    $citrix_domain_name = 'DOM_AKA_NT';
53    
54  ?>  ?>

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