File: dbsettings.inc.php

package info (click to toggle)
spotweb 20130826%2Bdfsg2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,132 kB
  • ctags: 11,281
  • sloc: php: 31,367; xml: 1,009; sh: 148; makefile: 83
file content (11 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
<?php
# database settings managed by Debian configuration
# Do not touch this file

@include '/etc/spotweb/dbconfig.php';
$dbsettings['engine'] = "pdo_$dbtype";
$dbsettings['host'] = $dbserver ?: "localhost";
$dbsettings['dbname'] = $dbname;
$dbsettings['user'] = $dbuser;
$dbsettings['pass'] = $dbpass;