diff --git a/bigbluebutton-html5/imports/startup/client/intl.jsx b/bigbluebutton-html5/imports/startup/client/intl.jsx
index 88f6292deba4dc66e3729dc5b3a477756f9c9c75..741b9c0f59fa9b0df32382b32bdef9c3c6e4fe2d 100644
--- a/bigbluebutton-html5/imports/startup/client/intl.jsx
+++ b/bigbluebutton-html5/imports/startup/client/intl.jsx
@@ -92,7 +92,7 @@ class IntlStartup extends Component {
   }
 
   fetchLocalizedMessages(locale, init = false) {
-    const url = `/html5client/locale?locale=${locale}&init=${init}`;
+    const url = `./locale?locale=${locale}&init=${init}`;
 
     this.setState({ fetching: true }, () => {
       fetch(url)
diff --git a/bigbluebutton-html5/imports/startup/server/redis.js b/bigbluebutton-html5/imports/startup/server/redis.js
index 739164c47d70326e5719acbc3ea0e85e1d2e1fe1..cb6b403a5dc667ef650c5d2e2390d08559cbb4a7 100755
--- a/bigbluebutton-html5/imports/startup/server/redis.js
+++ b/bigbluebutton-html5/imports/startup/server/redis.js
@@ -108,6 +108,9 @@ class RedisPubSub {
     this.didSendRequestEvent = false;
     const host = process.env.REDIS_HOST || Meteor.settings.private.redis.host;
     const redisConf = Meteor.settings.private.redis;
+    this.instanceMax = parseInt(process.env.INSTANCE_MAX || "1");
+    this.instanceId = process.env.INSTANCE_ID || "1";
+
     const { password, port } = redisConf;
 
     if (password) {
@@ -122,6 +125,7 @@ class RedisPubSub {
 
     this.emitter = new EventEmitter2();
     this.mettingsQueues = {};
+    this.mettingsQueues[NO_MEETING_ID] = new MeetingMessageQueue(this.emitter, this.config.async, this.config.debug);
 
     this.handleSubscribe = this.handleSubscribe.bind(this);
     this.handleMessage = this.handleMessage.bind(this);
@@ -180,16 +184,33 @@ class RedisPubSub {
 
     const queueId = meetingId || NO_MEETING_ID;
 
-    if (!(queueId in this.mettingsQueues)) {
-      this.mettingsQueues[meetingId] = new MeetingMessageQueue(this.emitter, async, this.debug);
+    if (eventName === 'MeetingCreatedEvtMsg'){
+      const newIntId = parsedMessage.core.body.props.meetingProp.intId;
+      const metadata = parsedMessage.core.body.props.metadataProp.metadata;
+      const instanceId = metadata['bbb-meetinginstance'];
+
+      Logger.info("MeetingCreatedEvtMsg received with meetingInstance: " + instanceId + " -- this is instance: " + this.instanceId);
+
+      if (instanceId === this.instanceId){
+        this.mettingsQueues[newIntId] = new MeetingMessageQueue(this.emitter, async, this.debug);
+      } else {
+        // Logger.error('THIS NODEJS IS **NOT** PROCESSING EVENTS FOR THIS MEETING')
+      }
     }
 
-    this.mettingsQueues[meetingId].add({
-      pattern,
-      channel,
-      eventName,
-      parsedMessage,
-    });
+    if (queueId in this.mettingsQueues) {
+      this.mettingsQueues[queueId].add({
+        pattern,
+        channel,
+        eventName,
+        parsedMessage,
+      });
+    }
+    //else {
+    //Logger.info("Skipping redis message for " + queueId);
+    //}
+
+
   }
 
   destroyMeetingQueue(id) {
@@ -258,3 +279,4 @@ Meteor.startup(() => {
 });
 
 export default RedisPubSubSingleton;
+
diff --git a/bigbluebutton-html5/imports/ui/components/legacy/component.jsx b/bigbluebutton-html5/imports/ui/components/legacy/component.jsx
index 1fdb38a7171cc83a4bb3187b5a64b7b635d8be8a..f6c049f3452dc5cc425822c770f4ba119e834c2d 100755
--- a/bigbluebutton-html5/imports/ui/components/legacy/component.jsx
+++ b/bigbluebutton-html5/imports/ui/components/legacy/component.jsx
@@ -78,7 +78,7 @@ export default class Legacy extends Component {
       || navigator.language
       || Meteor.settings.public.app.defaultSettings.application.fallbackLocale;
 
-    const url = `/html5client/locale?locale=${locale}`;
+    const url = `./locale?locale=${locale}`;
 
     const that = this;
     this.state = { viewState: FETCHING };
diff --git a/bigbluebutton-html5/imports/ui/components/meeting-ended/component.jsx b/bigbluebutton-html5/imports/ui/components/meeting-ended/component.jsx
index 6953534276667fad08badc5393f6d70fb3d49ff6..819fa865ca70c66b313d82ee97706275990d0415 100755
--- a/bigbluebutton-html5/imports/ui/components/meeting-ended/component.jsx
+++ b/bigbluebutton-html5/imports/ui/components/meeting-ended/component.jsx
@@ -159,7 +159,7 @@ class MeetingEnded extends PureComponent {
       comment: MeetingEnded.getComment(),
       userRole: this.localUserRole,
     };
-    const url = '/html5client/feedback';
+    const url = './feedback';
     const options = {
       method: 'POST',
       body: JSON.stringify(message),
diff --git a/bigbluebutton-html5/imports/ui/components/settings/service.js b/bigbluebutton-html5/imports/ui/components/settings/service.js
index 9d894d8c7ad228e0a1039a523613fcf501841260..85af45dddd425ef6af2f48f04cd3115870e57262 100644
--- a/bigbluebutton-html5/imports/ui/components/settings/service.js
+++ b/bigbluebutton-html5/imports/ui/components/settings/service.js
@@ -27,7 +27,7 @@ const updateSettings = (obj, msg) => {
   }
 };
 
-const getAvailableLocales = () => fetch('/html5client/locales').then(locales => locales.json());
+const getAvailableLocales = () => fetch('./locales').then(locales => locales.json());
 
 export {
   getUserRoles,
diff --git a/bigbluebutton-web/grails-app/conf/bigbluebutton.properties b/bigbluebutton-web/grails-app/conf/bigbluebutton.properties
index 4b748b9683578183f5a83173f8f39ac7443c3c46..7f175be89e6f6f98e740b14351aa55f80703be36 100755
--- a/bigbluebutton-web/grails-app/conf/bigbluebutton.properties
+++ b/bigbluebutton-web/grails-app/conf/bigbluebutton.properties
@@ -258,7 +258,7 @@ moderatorsJoinViaHTML5Client=true
 
 # The url of the BigBlueButton HTML5 client. Users will be redirected here when
 # successfully joining the meeting.
-html5ClientUrl=${bigbluebutton.web.serverURL}/html5client/join
+html5ClientUrl=${bigbluebutton.web.serverURL}/html5client/%%INSTANCEID%%/join
 
 
 # The url for where the guest will poll if approved to join or not.
diff --git a/bigbluebutton-web/grails-app/controllers/org/bigbluebutton/web/controllers/ApiController.groovy b/bigbluebutton-web/grails-app/controllers/org/bigbluebutton/web/controllers/ApiController.groovy
index 9972fcbbe698f1ec0086ac7aa6afef7a30c34439..22792a98d75f6f9b2edebe03799a8e247b129e8f 100755
--- a/bigbluebutton-web/grails-app/controllers/org/bigbluebutton/web/controllers/ApiController.groovy
+++ b/bigbluebutton-web/grails-app/controllers/org/bigbluebutton/web/controllers/ApiController.groovy
@@ -510,6 +510,11 @@ class ApiController {
       }
     }
 
+
+    String meetingInstance = meeting.getMetadata()["bbb-meetinginstance"];
+    meetingInstance = (meetingInstance == null) ? "1" : meetingInstance;
+    clientURL = clientURL.replaceAll("%%INSTANCEID%%", meetingInstance);
+
     if (!StringUtils.isEmpty(params.redirect)) {
       try {
         redirectClient = Boolean.parseBoolean(params.redirect);