Use keyserver.ubuntu.com for manual lookups in the app

This commit is contained in:
Tankred Hase 2015-02-10 18:37:12 +01:00
parent da639b5a69
commit 443cc3b59b
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ module.exports = appCfg;
*/ */
appCfg.config = { appCfg.config = {
cloudUrl: 'https://keys.whiteout.io', cloudUrl: 'https://keys.whiteout.io',
hkpUrl: 'https://pgp.mit.edu', hkpUrl: 'http://keyserver.ubuntu.com',
privkeyServerUrl: 'https://keychain.whiteout.io', privkeyServerUrl: 'https://keychain.whiteout.io',
adminUrl: 'https://admin-node.whiteout.io', adminUrl: 'https://admin-node.whiteout.io',
settingsUrl: 'https://settings.whiteout.io/autodiscovery/', settingsUrl: 'https://settings.whiteout.io/autodiscovery/',

View File

@ -20,7 +20,7 @@ var PublickeyImportCtrl = function($scope, $q, keychain, pgp, hkp, dialog, appCo
// scope variables // scope variables
// //
$scope.hkpUrl = appConfig.config.hkpUrl.replace('https://', ''); $scope.hkpUrl = appConfig.config.hkpUrl.replace(/http[s]?:\/\//, '');
// //
// scope functions // scope functions