diff --git a/domain-server/resources/describe-settings.json b/domain-server/resources/describe-settings.json
index 83b270c772..1ff82f58eb 100644
--- a/domain-server/resources/describe-settings.json
+++ b/domain-server/resources/describe-settings.json
@@ -6,7 +6,7 @@
{
"name": "access_token",
"label": "Access Token",
- "help": "This is an access token generated on the My Security page of your High Fidelity account.
Generate a token with the 'domains' scope and paste it here.
This is required to associate this domain-server with a domain in your account."
+ "help": "This is an access token generated on the My Security page of your High Fidelity account.
Generate a token with the 'domains' scope and paste it here.
This is required to associate this domain-server with a domain in your account."
},
{
"name": "id",
@@ -30,7 +30,7 @@
},
{
"value": "disabled",
- "label": "None: use the network information I have entered for this domain at data.highfidelity.io"
+ "label": "None: use the network information I have entered for this domain at metaverse.highfidelity.io"
}
]
},
diff --git a/domain-server/resources/web/js/settings.js b/domain-server/resources/web/js/settings.js
index bdd80df9ec..f62515c863 100644
--- a/domain-server/resources/web/js/settings.js
+++ b/domain-server/resources/web/js/settings.js
@@ -652,7 +652,7 @@ function chooseFromHighFidelityDomains(clickedButton) {
clickedButton.attr('disabled', 'disabled')
// get a list of user domains from data-web
- data_web_domains_url = "https://data.highfidelity.io/api/v1/domains?access_token="
+ data_web_domains_url = "https://metaverse.highfidelity.io/api/v1/domains?access_token="
$.getJSON(data_web_domains_url + Settings.initialValues.metaverse.access_token, function(data){
modal_buttons = {
@@ -682,7 +682,7 @@ function chooseFromHighFidelityDomains(clickedButton) {
modal_buttons["success"] = {
label: 'Create new domain',
callback: function() {
- window.open("https://data.highfidelity.io/user/domains", '_blank');
+ window.open("https://metaverse.highfidelity.io/user/domains", '_blank');
}
}
modal_body = "
You do not have any domains in your High Fidelity account." +
diff --git a/examples/libraries/modelUploader.js b/examples/libraries/modelUploader.js
index 7f575a54ef..fcc96854ab 100644
--- a/examples/libraries/modelUploader.js
+++ b/examples/libraries/modelUploader.js
@@ -21,7 +21,7 @@ modelUploader = (function () {
//svoBuffer,
mapping,
geometry,
- API_URL = "https://data.highfidelity.io/api/v1/models",
+ API_URL = "https://metaverse.highfidelity.io/api/v1/models",
MODEL_URL = "http://public.highfidelity.io/models/content",
NAME_FIELD = "name",
SCALE_FIELD = "scale",
diff --git a/examples/lobby.js b/examples/lobby.js
index fcac7a490b..1936a4e531 100644
--- a/examples/lobby.js
+++ b/examples/lobby.js
@@ -152,7 +152,7 @@ var places = {};
function changeLobbyTextures() {
var req = new XMLHttpRequest();
- req.open("GET", "https://data.highfidelity.io/api/v1/places?limit=21", false);
+ req.open("GET", "https://metaverse.highfidelity.io/api/v1/places?limit=21", false);
req.send();
places = JSON.parse(req.responseText).data.places;
diff --git a/interface/src/ui/LoginDialog.cpp b/interface/src/ui/LoginDialog.cpp
index 3fd6e8e3cd..049e5bd1cd 100644
--- a/interface/src/ui/LoginDialog.cpp
+++ b/interface/src/ui/LoginDialog.cpp
@@ -22,7 +22,7 @@
#include "ui_loginDialog.h"
#include "LoginDialog.h"
-const QString FORGOT_PASSWORD_URL = "https://data.highfidelity.io/users/password/new";
+const QString FORGOT_PASSWORD_URL = "https://metaverse.highfidelity.io/users/password/new";
LoginDialog::LoginDialog(QWidget* parent) :
FramelessDialog(parent, 0, FramelessDialog::POSITION_TOP),
diff --git a/interface/ui/loginDialog.ui b/interface/ui/loginDialog.ui
index 73d466b68a..c986db7f50 100644
--- a/interface/ui/loginDialog.ui
+++ b/interface/ui/loginDialog.ui
@@ -136,7 +136,7 @@