Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7707 - (hide annotations) (download)
Fri Sep 25 08:25:47 2015 UTC (8 years, 7 months ago) by niro
File size: 1369 byte(s)
-honor wol interface
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 7707 $woliface = "eth0"
29     $wolcmd = "/usr/bin/ether-wake -i ".$woliface;
30 niro 1633
31 niro 2183 // fixed config.rc
32     $configrc = $wwwroot."/share/config.rc";
33    
34     // fixed mage.rc
35     $magerc = $wwwroot."/share/mage.rc";
36    
37 niro 3344 // default socket timeout for ssh conections
38     $socket_timeout = 10;
39    
40 niro 2183 // ssh public key file
41     $pubkey_file = $home.'/.ssh/id_dsa.pub';
42    
43     // ssh private key file
44     $privkey_file = $home.'/.ssh/id_dsa';
45    
46 niro 2608 // citrix_browser addresses
47 niro 7097 $citrix_browseradrs = 'ica.dom-aka-nt.intern';
48 niro 2608
49 niro 2609 // citrix default domain name
50     $citrix_domain_name = 'DOM_AKA_NT';
51    
52 niro 7131 // storefront store
53     $storefront_store = 'https://storefront.dom-aka-nt.intern';
54    
55     // storefront default domain name
56     $storefront_domain_name = 'DOM_AKA_NT';
57    
58 niro 7110 // mcore client port
59     $mcore_port = 6666;
60    
61     // ssh port of older clients
62     $ssh_port = 22;
63    
64     // ping timout
65     $ping_timeout = 0.01;
66    
67 niro 1610 ?>

Properties

Name Value
svn:executable *