1
0
mirror of https://github.com/Yubico/yubikey-ksm.git synced 2024-11-29 00:24:14 +01:00
yubikey-ksm/ykksm-config.php

20 lines
491 B
PHP
Raw Normal View History

2009-02-24 22:27:28 +01:00
<?php
//ykksm will use the configuration stored in /etc/yubico/ksm/config-db.php, if that file exists. If it does not exist, the below values will be used.
if(!include '/etc/yubico/ksm/config-db.php') {
$dbuser='ykksmreader';
$dbpass='yourpassword';
$basepath='';
$dbname='ykksm';
$dbserver='';
$dbport='';
2013-01-28 15:10:59 +01:00
$dbtype='mysql';
}
$db_dsn = "$dbtype:dbname=$dbname;host=127.0.0.1";
$db_username = $dbuser;
$db_password = $dbpass;
2009-12-02 18:31:17 +01:00
$db_options = array();
$logfacility = LOG_AUTH;
2009-02-24 22:27:28 +01:00
?>