Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7110 - (hide annotations) (download)
Wed Sep 9 11:20:52 2015 UTC (8 years, 8 months ago) by niro
File size: 1180 byte(s)
-added function ping_host() to ping clients via a socket connection to speed up things
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 2183 // ssh Kommando
25     $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";
26 niro 1633
27 niro 2183 // wake-on-lan Kommando
28 niro 7096 $wolcmd = "/usr/bin/ether-wake";
29 niro 1633
30 niro 2183 // fixed config.rc
31     $configrc = $wwwroot."/share/config.rc";
32    
33     // fixed mage.rc
34     $magerc = $wwwroot."/share/mage.rc";
35    
36 niro 3344 // default socket timeout for ssh conections
37     $socket_timeout = 10;
38    
39 niro 2183 // ssh public key file
40     $pubkey_file = $home.'/.ssh/id_dsa.pub';
41    
42     // ssh private key file
43     $privkey_file = $home.'/.ssh/id_dsa';
44    
45 niro 2608 // citrix_browser addresses
46 niro 7097 $citrix_browseradrs = 'ica.dom-aka-nt.intern';
47 niro 2608
48 niro 2609 // citrix default domain name
49     $citrix_domain_name = 'DOM_AKA_NT';
50    
51 niro 7110 // mcore client port
52     $mcore_port = 6666;
53    
54     // ssh port of older clients
55     $ssh_port = 22;
56    
57     // ping timout
58     $ping_timeout = 0.01;
59    
60 niro 1610 ?>

Properties

Name Value
svn:executable *