Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2609 - (hide annotations) (download)
Wed Jul 6 14:44:40 2011 UTC (12 years, 10 months ago) by niro
File size: 1123 byte(s)
-define citrix_domain_name via config.php.inc
1 niro 1610 <?
2    
3 niro 2183 // SESSION
4     session_start();
5     if( !isset($_SESSION['openclose']) )
6     {
7     session_register('openclose');
8     $_SESSION['openclose'] = array();
9     }
10 niro 1610
11 niro 2183 // Datenbankverbindungs-Konfiguration
12     $dbhost = "localhost";
13     $dbname = "alx_web";
14     $dbuname = "alx_install";
15     $dbpass = "@lx";
16 niro 1633
17 niro 2183 // www root of the alx_install
18     $wwwroot = "/var/www/htdocs";
19 niro 1610
20 niro 2183 // Home Verzeichnis des httpd-daemons für ssh-certs
21     $home = "/var/lib/apache";
22 niro 1610
23 niro 2183 // ping Kommando zum überprüfen der Errreichbarkeit der Hosts
24     $pingcmd = "/usr/sbin/fping -c 1 -t 50 -q";
25 niro 1610
26 niro 2183 // ssh Kommando
27     $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";
28 niro 1633
29 niro 2183 // wake-on-lan Kommando
30     $wolcmd = "/usr/bin/etherwake";
31 niro 1633
32 niro 2183 // 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 niro 2608 // 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 niro 2609 // citrix default domain name
48     $citrix_domain_name = 'DOM_AKA_NT';
49    
50 niro 1610 ?>

Properties

Name Value
svn:executable *