My webcam does not show up on other computers, only on mine

Hi,

I have followed this video (3:27) and created an HTML webpage. But I can’t see the chatbot from other computers onthe website.

I am using version 3.1 of rasa.

Here is my HTML file:

             "https://cdn.jsdelivr.net/npm/rasa-webchat@1.x.x/lib/index.js"),
        (e.async = !0),
              initPayload: "/greet",
              customData: { language: "en" },
              socketUrl: "http://localhost:5005",
              socketPath: "/socket.io/",
              title: "title",
              subtitle: "subtitle",
              showFullScreenButton: true,
            },
            null

          );
        }),
        t.insertBefore(e, t.firstChild);
    })();

And here is my credentials.yml:

socketio:
 user_message_evt: user_uttered
 bot_message_evt: bot_uttered
 session_persistence: true

rasa:
  url: "http://localhost:5002/api"

I followed a tutorial to create an HTML webpage with a Rasa chatbot for a webcam feed. It works on my computer, but the chatbot doesn’t show up on other computers. I’m using Rasa version 3.1. The socketUrl in my HTML is http://localhost:5005 and my credentials.yml points to http://localhost:5002/api. Why is the chatbot not visible on other computers, and how can I fix this?