This commit is contained in:
Klaus Basan
2016-09-10 20:05:02 +02:00
committed by Roland Winklmeier
parent 1d15e90f0a
commit 09d74c48b8
3 changed files with 6 additions and 4 deletions

View File

@@ -5,7 +5,7 @@
"dbHttpPort": 5080, "dbHttpPort": 5080,
"dbHttpsPort": 50443, "dbHttpsPort": 50443,
"dbRootDirectoryUrl": { "dbRootDirectoryUrl": {
"url": "https://vatsim-germany.org:50443/mapping/public" "url": "https://datastore.swift-project.org"
}, },
"development": false, "development": false,
"fsdTestServers": { "fsdTestServers": {
@@ -22,7 +22,7 @@
"sharedUrls": { "sharedUrls": {
"containerbase": [ "containerbase": [
{ {
"url": "https://vatsim-germany.org:50443/mapping/public/shared" "url": "https://datastore.swift-project.org/shared"
}, },
{ {
"url": "http://ubuntu12/public/bootstrap/shared" "url": "http://ubuntu12/public/bootstrap/shared"

View File

@@ -119,7 +119,9 @@ namespace BlackConfig
const QStringList &CBuildConfig::swiftTeamDefaultServers() const QStringList &CBuildConfig::swiftTeamDefaultServers()
{ {
static const QStringList s({ "https://vatsim-germany.org:50443/mapping/public/shared", static const QStringList s(
{
"https://datastore.swift-project.org/shared",
"http://ubuntu12/public/bootstrap/shared" "http://ubuntu12/public/bootstrap/shared"
}); });
return s; return s;

View File

@@ -251,7 +251,7 @@ namespace BlackCore
const QString &CSetupReader::unitTestBootstrapUrl() const QString &CSetupReader::unitTestBootstrapUrl()
{ {
static const QString url("https://vatsim-germany.org:50443/mapping/public/shared"); static const QString url("https://datastore.swift-project.org/shared");
return url; return url;
} }