switch data-web urls to point at production server rather than dev one

This commit is contained in:
Seth Alves 2016-08-01 12:00:08 -07:00
parent c72cfb165c
commit 60d6673950
3 changed files with 3 additions and 9 deletions

View file

@ -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',

View file

@ -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),

View file

@ -15,9 +15,7 @@
#include <QtCore/QUrl>
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