Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2183 - (hide annotations) (download)
Tue Jun 7 13:02:19 2011 UTC (12 years, 11 months ago) by niro
Original Path: alx-src/branches/alx-web-060/include/config.inc.php
File size: 894 byte(s)
-fixed whitepaces
-added ssh key fule locations
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 1610 ?>

Properties

Name Value
svn:executable *