Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1634 - (hide annotations) (download)
Thu Dec 9 22:43:36 2010 UTC (13 years, 5 months ago) by niro
Original Path: alx-src/branches/alx-web-050/include/config.inc.php
File size: 782 byte(s)
-fixed typos
1 niro 1610 <?
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 niro 1633 // www root of the alx_install
17     $wwwroot = "/var/www"
18    
19 niro 1610 // 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 niro 1633
31     // fixed config.rc
32 niro 1634 $configrc = $wwwroot."/share/config.rc";
33 niro 1633
34     // fixed mage.rc
35 niro 1634 $magerc = $wwwroot."/share/mage.rc";
36 niro 1610 ?>

Properties

Name Value
svn:executable *