Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7097 - (hide annotations) (download)
Wed Sep 9 08:03:01 2015 UTC (8 years, 8 months ago) by niro
File size: 1206 byte(s)
-use dns name for ica browsers
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 niro 7097 $wwwroot = "/var/www/htdocs/alx-web-070";
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 7097 //$pingcmd = "/usr/bin/ping -w 1 -W 1 -q";
27 niro 1610
28 niro 2183 // ssh Kommando
29     $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";
30 niro 1633
31 niro 2183 // wake-on-lan Kommando
32 niro 7096 $wolcmd = "/usr/bin/ether-wake";
33 niro 1633
34 niro 2183 // fixed config.rc
35     $configrc = $wwwroot."/share/config.rc";
36    
37     // fixed mage.rc
38     $magerc = $wwwroot."/share/mage.rc";
39    
40 niro 3344 // default socket timeout for ssh conections
41     $socket_timeout = 10;
42    
43 niro 2183 // ssh public key file
44     $pubkey_file = $home.'/.ssh/id_dsa.pub';
45    
46     // ssh private key file
47     $privkey_file = $home.'/.ssh/id_dsa';
48    
49 niro 2608 // citrix_browser addresses
50 niro 7097 $citrix_browseradrs = 'ica.dom-aka-nt.intern';
51 niro 2608
52 niro 2609 // citrix default domain name
53     $citrix_domain_name = 'DOM_AKA_NT';
54    
55 niro 1610 ?>

Properties

Name Value
svn:executable *