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 1635 by niro, Thu Dec 9 22:44:45 2010 UTC alx-src/branches/alx-web-070/include/config.inc.php revision 7736 by niro, Tue Nov 3 10:48:13 2015 UTC
# Line 1  Line 1 
1  <?  <?
  // SESSION  
  session_start();  
  if( !isset($_SESSION['openclose']) )  
  {  
  session_register('openclose');  
  $_SESSION['openclose'] = array();  
  }  
   
  // Datenbankverbindungs-Konfiguration  
  $dbhost  = "localhost";  
  $dbname  = "alx_web";  
  $dbuname = "alx_install";  
  $dbpass  = "@lx";  
   
  // www root of the alx_install  
  $wwwroot = "/var/www";  
   
  // Home Verzeichnis des httpd-daemons für ssh-certs  
  $home = "/var/lib/apache";  
   
  // ping Kommando zum überprüfen der Errreichbarkeit der Hosts  
  $pingcmd = "/usr/sbin/fping -c 1 -t 50 -q";  
   
  // ssh Kommando  
  $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";  
2    
3   // wake-on-lan Kommando  // SESSION
4   $wolcmd = "/usr/bin/etherwake";  session_start();
5    if( !isset($_SESSION['openclose']) )
6    {
7     //session_register('openclose');
8     //$_SESSION['openclose'] = $openclose;
9     $_SESSION['openclose'] = array();
10    }
11    
12   // fixed config.rc  // Datenbankverbindungs-Konfiguration
13   $configrc = $wwwroot."/share/config.rc";  $dbhost  = "127.0.0.1";
14    $dbname  = "mcore";
15    $dbuname = "alx_install";
16    $dbpass  = "@lx";
17    
18    // www root of the alx_install
19    $wwwroot = "/var/www/htdocs/alx-web-070";
20    
21    // Home Verzeichnis des httpd-daemons für ssh-certs
22    $home = "/var/lib/apache";
23    
24    // ssh Kommando
25    $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";
26    
27    // wake-on-lan Kommando
28    $woliface = "eth0";
29    $wolcmd = "/usr/bin/ether-wake -i ".$woliface;
30    
31    // fixed config.rc
32    $configrc = $wwwroot."/share/config.rc";
33    
34    // fixed mage.rc
35    $magerc = $wwwroot."/share/mage.rc";
36    
37    // default socket timeout for ssh conections
38    $socket_timeout = 10;
39    
40    // ssh public key file
41    $pubkey_file = $home.'/.ssh/id_dsa.pub';
42    
43    // ssh private key file
44    $privkey_file = $home.'/.ssh/id_dsa';
45    
46    // citrix_browser addresses
47    $citrix_serverlist = 'ica.dom-aka-nt.intern';
48    
49    // citrix default domain name
50    $citrix_domain_name = 'DOM_AKA_NT';
51    
52    // storefront store
53    $storefront_store = 'https://storefront.dom-aka-nt.intern/Citrix/ALX/PNAgent/config.xml';
54    
55    // storefront default domain name
56    $storefront_domain_name = 'DOM_AKA_NT';
57    
58    // mcore client port
59    $mcore_port = 6666;
60    
61    // ssh port of older clients
62    $ssh_port = 22;
63    
64    // ping timout
65    $ping_timeout = 0.01;
66    
  // fixed mage.rc  
  $magerc = $wwwroot."/share/mage.rc";  
67  ?>  ?>

Legend:
Removed from v.1635  
changed lines
  Added in v.7736