Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1608 - (hide annotations) (download)
Thu Dec 2 22:13:04 2010 UTC (13 years, 5 months ago) by niro
Original Path: alx-src/branches/alx-web-050/include/config.inc.php
File size: 633 byte(s)
-consequently use commands defined in config.inc.php
1 niro 1600 <?
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 niro 1602
16 niro 1600 // Home Verzeichnis des httpd-daemons für ssh-certs
17 niro 1603 $home = "/var/lib/apache";
18 niro 1602
19 niro 1600 // ping Kommando zum überprüfen der Errreichbarkeit der Hosts
20 niro 1602 $pingcmd = "/usr/sbin/fping -c 1 -t 50 -q";
21    
22 niro 1600 // ssh Kommando
23 niro 1608 $sshcmd = "/usr/bin/ssh -l root -o ConnectTimeout=5";
24 niro 1602
25 niro 1600 // wake-on-lan Kommando
26 niro 1602 $wolcmd = "/usr/bin/etherwake";
27 niro 1600 ?>

Properties

Name Value
svn:executable *