From 60d66739500b1f057a75d4048d54071dfd158656 Mon Sep 17 00:00:00 2001 From: Seth Alves Date: Mon, 1 Aug 2016 12:00:08 -0700 Subject: [PATCH] switch data-web urls to point at production server rather than dev one --- domain-server/resources/web/settings/js/settings.js | 4 +--- domain-server/src/DomainServer.cpp | 4 +--- libraries/networking/src/NetworkingConstants.h | 4 +--- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/domain-server/resources/web/settings/js/settings.js b/domain-server/resources/web/settings/js/settings.js index 06c6520c26..c1005de105 100644 --- a/domain-server/resources/web/settings/js/settings.js +++ b/domain-server/resources/web/settings/js/settings.js @@ -1,8 +1,6 @@ var Settings = { showAdvanced: false, - // METAVERSE_URL: 'https://metaverse.highfidelity.com', - // METAVERSE_URL: 'http://localhost:3000', - METAVERSE_URL: 'https://devdataweb.highfidelity.com', + METAVERSE_URL: 'https://metaverse.highfidelity.com', ADVANCED_CLASS: 'advanced-setting', TRIGGER_CHANGE_CLASS: 'trigger-change', DATA_ROW_CLASS: 'value-row', diff --git a/domain-server/src/DomainServer.cpp b/domain-server/src/DomainServer.cpp index d972b8f641..8af364992c 100644 --- a/domain-server/src/DomainServer.cpp +++ b/domain-server/src/DomainServer.cpp @@ -45,9 +45,7 @@ int const DomainServer::EXIT_CODE_REBOOT = 234923; -// const QString ICE_SERVER_DEFAULT_HOSTNAME = "ice.highfidelity.com"; -// const QString ICE_SERVER_DEFAULT_HOSTNAME = "localhost"; -const QString ICE_SERVER_DEFAULT_HOSTNAME = "devdataweb.highfidelity.com"; +const QString ICE_SERVER_DEFAULT_HOSTNAME = "ice.highfidelity.com"; DomainServer::DomainServer(int argc, char* argv[]) : QCoreApplication(argc, argv), diff --git a/libraries/networking/src/NetworkingConstants.h b/libraries/networking/src/NetworkingConstants.h index 62a8f29088..a512ae8887 100644 --- a/libraries/networking/src/NetworkingConstants.h +++ b/libraries/networking/src/NetworkingConstants.h @@ -15,9 +15,7 @@ #include namespace NetworkingConstants { - // const QUrl METAVERSE_SERVER_URL = QUrl("https://metaverse.highfidelity.com"); - // const QUrl METAVERSE_SERVER_URL = QUrl("http://localhost:3000"); - const QUrl METAVERSE_SERVER_URL = QUrl("https://devdataweb.highfidelity.com"); + const QUrl METAVERSE_SERVER_URL = QUrl("https://metaverse.highfidelity.com"); } #endif // hifi_NetworkingConstants_h