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-060/include/config.inc.php revision 2609 by niro, Wed Jul 6 14:44:40 2011 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'] = array();
9    }
10    
11   // fixed config.rc  // Datenbankverbindungs-Konfiguration
12   $configrc = $wwwroot."/share/config.rc";  $dbhost  = "localhost";
13    $dbname  = "alx_web";
14    $dbuname = "alx_install";
15    $dbpass  = "@lx";
16    
17    // www root of the alx_install
18    $wwwroot = "/var/www/htdocs";
19    
20    // Home Verzeichnis des httpd-daemons für ssh-certs
21    $home = "/var/lib/apache";
22    
23    // ping Kommando zum überprüfen der Errreichbarkeit der Hosts
24    $pingcmd = "/usr/sbin/fping -c 1 -t 50 -q";
25    
26    // ssh Kommando
27    $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";
28    
29    // wake-on-lan Kommando
30    $wolcmd = "/usr/bin/etherwake";
31    
32    // fixed config.rc
33    $configrc = $wwwroot."/share/config.rc";
34    
35    // fixed mage.rc
36    $magerc = $wwwroot."/share/mage.rc";
37    
38    // ssh public key file
39    $pubkey_file = $home.'/.ssh/id_dsa.pub';
40    
41    // ssh private key file
42    $privkey_file = $home.'/.ssh/id_dsa';
43    
44    // citrix_browser addresses
45    $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';
46    
47    // citrix default domain name
48    $citrix_domain_name = 'DOM_AKA_NT';
49    
  // fixed mage.rc  
  $magerc = $wwwroot."/share/mage.rc";  
50  ?>  ?>

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