Magellan Linux

Annotation of /alx-src/branches/alx-web-070/include/config.inc.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7096 - (hide annotations) (download)
Wed Sep 9 08:00:16 2015 UTC (8 years, 8 months ago) by niro
File size: 1237 byte(s)
-newer alx provides ether-wake
1 niro 1610 <?
2    
3 niro 2183 // SESSION
4     session_start();
5     if( !isset($_SESSION['openclose']) )
6     {
7 niro 7094 //session_register('openclose');
8     //$_SESSION['openclose'] = $openclose;
9 niro 2183 $_SESSION['openclose'] = array();
10     }
11 niro 1610
12 niro 2183 // Datenbankverbindungs-Konfiguration
13 niro 7095 $dbhost = "127.0.0.1";
14 niro 2183 $dbname = "alx_web";
15     $dbuname = "alx_install";
16     $dbpass = "@lx";
17 niro 1633
18 niro 2183 // www root of the alx_install
19     $wwwroot = "/var/www/htdocs";
20 niro 1610
21 niro 7093 // Home Verzeichnis des httpd-daemons für ssh-certs
22 niro 2183 $home = "/var/lib/apache";
23 niro 1610
24 niro 7093 // ping Kommando zum überprüfen der Errreichbarkeit der Hosts
25 niro 2183 $pingcmd = "/usr/sbin/fping -c 1 -t 50 -q";
26 niro 1610
27 niro 2183 // ssh Kommando
28     $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";
29 niro 1633
30 niro 2183 // wake-on-lan Kommando
31 niro 7096 $wolcmd = "/usr/bin/ether-wake";
32 niro 1633
33 niro 2183 // fixed config.rc
34     $configrc = $wwwroot."/share/config.rc";
35    
36     // fixed mage.rc
37     $magerc = $wwwroot."/share/mage.rc";
38    
39 niro 3344 // default socket timeout for ssh conections
40     $socket_timeout = 10;
41    
42 niro 2183 // ssh public key file
43     $pubkey_file = $home.'/.ssh/id_dsa.pub';
44    
45     // ssh private key file
46     $privkey_file = $home.'/.ssh/id_dsa';
47    
48 niro 2608 // 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 niro 2609 // citrix default domain name
52     $citrix_domain_name = 'DOM_AKA_NT';
53    
54 niro 1610 ?>

Properties

Name Value
svn:executable *