Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1636 - (show annotations) (download)
Thu Dec 9 22:45:53 2010 UTC (13 years, 4 months ago) by niro
File size: 790 byte(s)
-changed wwwroot to /var/www/htdocs
1 <?
2 // SESSION
3 session_start();
4 if( !isset($_SESSION['openclose']) )
5 {
6 session_register('openclose');
7 $_SESSION['openclose'] = array();
8 }
9
10 // Datenbankverbindungs-Konfiguration
11 $dbhost = "localhost";
12 $dbname = "alx_web";
13 $dbuname = "alx_install";
14 $dbpass = "@lx";
15
16 // www root of the alx_install
17 $wwwroot = "/var/www/htdocs";
18
19 // Home Verzeichnis des httpd-daemons für ssh-certs
20 $home = "/var/lib/apache";
21
22 // ping Kommando zum überprüfen der Errreichbarkeit der Hosts
23 $pingcmd = "/usr/sbin/fping -c 1 -t 50 -q";
24
25 // ssh Kommando
26 $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";
27
28 // wake-on-lan Kommando
29 $wolcmd = "/usr/bin/etherwake";
30
31 // fixed config.rc
32 $configrc = $wwwroot."/share/config.rc";
33
34 // fixed mage.rc
35 $magerc = $wwwroot."/share/mage.rc";
36 ?>

Properties

Name Value
svn:executable *