mirror of
https://github.com/Yubico/yubikey-val.git
synced 2025-01-20 01:52:15 +01:00
13 lines
298 B
Plaintext
13 lines
298 B
Plaintext
<?php
|
|
|
|
//// DB
|
|
//
|
|
$baseParams = array ();
|
|
$baseParams['__DB_HOST__'] = 'localhost';
|
|
$baseParams['__DB_USER__'] = 'username';
|
|
$baseParams['__DB_PW__'] = 'password';
|
|
$baseParams['__DB_NAME__'] = 'yubico';
|
|
$baseParams['__YKKMS_URL__'] = "http://ykkms.example.com/wsapi/decrypt/?otp=";
|
|
|
|
?>
|