Fix u2f with nginx rp

This commit is contained in:
andryyy
2017-03-09 10:48:04 +01:00
parent d6cdc846d8
commit e2dc15774f
3 changed files with 5 additions and 5 deletions

View File

@@ -26,8 +26,7 @@ require_once 'inc/lib/Yubico.php';
// U2F API
require_once 'inc/lib/U2F.php';
$scheme = isset($_SERVER['HTTPS']) ? "https://" : "http://";
$u2f = new u2flib_server\U2F($scheme . $_SERVER['HTTP_HOST']);
$u2f = new u2flib_server\U2F('https://' . $_SERVER['HTTP_HOST']);
// PDO
$dsn = "$database_type:host=$database_host;dbname=$database_name";