Run multiples chatbot in the same server and connect through HTTPS

Hi guys, I am developing different chatbots (with different functionalities and different targets of people) and I want them to run in the same server(Google Platform VM running Ubuntu18) and connect to them remotely with HTTPS.

Currently I have one chatbot running through a HTTPS connection and it works fine, but I cant find the way to accomplish my goal of having multiple chatbots.

If anyone knows how to do it and wants to tell me I will be very glad :smiley:

Just change the ports. “rasa run” and “rasa run actions” have the option -p PORT or –port PORT. Remember to also change the endpoints with the same port for the action server. This way you can have different rasa serves working on different ports on the same machine.

Thanks! I already did that. I think I didnt make the question right. My specific question is how to have them both running through https like this

-> https://mydomain.com/chatbot1

-> https://mydomain.com/chatbot2

Instead of having:

-> https://mydomain.com:5001

-> https://mydomain.com:5002