Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7131 - (show annotations) (download)
Tue Sep 15 06:31:30 2015 UTC (8 years, 7 months ago) by niro
File size: 1336 byte(s)
-added storefront defaults
1 <?
2
3 // SESSION
4 session_start();
5 if( !isset($_SESSION['openclose']) )
6 {
7 //session_register('openclose');
8 //$_SESSION['openclose'] = $openclose;
9 $_SESSION['openclose'] = array();
10 }
11
12 // Datenbankverbindungs-Konfiguration
13 $dbhost = "127.0.0.1";
14 $dbname = "alx_web";
15 $dbuname = "alx_install";
16 $dbpass = "@lx";
17
18 // www root of the alx_install
19 $wwwroot = "/var/www/htdocs/alx-web-070";
20
21 // Home Verzeichnis des httpd-daemons für ssh-certs
22 $home = "/var/lib/apache";
23
24 // ssh Kommando
25 $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";
26
27 // wake-on-lan Kommando
28 $wolcmd = "/usr/bin/ether-wake";
29
30 // fixed config.rc
31 $configrc = $wwwroot."/share/config.rc";
32
33 // fixed mage.rc
34 $magerc = $wwwroot."/share/mage.rc";
35
36 // default socket timeout for ssh conections
37 $socket_timeout = 10;
38
39 // 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 // citrix_browser addresses
46 $citrix_browseradrs = 'ica.dom-aka-nt.intern';
47
48 // citrix default domain name
49 $citrix_domain_name = 'DOM_AKA_NT';
50
51 // storefront store
52 $storefront_store = 'https://storefront.dom-aka-nt.intern';
53
54 // storefront default domain name
55 $storefront_domain_name = 'DOM_AKA_NT';
56
57 // mcore client port
58 $mcore_port = 6666;
59
60 // ssh port of older clients
61 $ssh_port = 22;
62
63 // ping timout
64 $ping_timeout = 0.01;
65
66 ?>

Properties

Name Value
svn:executable *