1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-02 08:32:50 -05:00

added nfc flag for yubikey config

This commit is contained in:
Kyle Spearrin
2017-06-29 12:34:10 -04:00
parent 205a6d14a6
commit a1008353fd
4 changed files with 25 additions and 7 deletions

View File

@ -164,7 +164,7 @@ namespace Bit.Api
app.UseIdentityServerAuthentication(
GetIdentityOptions(env, IdentityServerAuthority(env, "identity", "33656"), "3"));
app.UseIdentityServerAuthentication(
GetIdentityOptions(env, IdentityServerAuthority(env, "api", "4001"), "2"));
GetIdentityOptions(env, IdentityServerAuthority(env, "api", "4000"), "2"));
// Add current context
app.UseMiddleware<CurrentContextMiddleware>();
@ -204,8 +204,8 @@ namespace Bit.Api
}
else
{
return $"http://localhost:{port}";
//return $"http://192.168.1.6:{port}"; // Desktop external
//return $"http://localhost:{port}";
return $"http://192.168.1.6:{port}"; // Desktop external
}
}
}