Multiple streamlit apps on single server

Hi, I intend to deploy two different streamlit apps on a single server (CentOs 8) with a static IP, can anyone please guide or point me to the relevant resource?

Hi @Hasnain , it looks like you’re trying to set the ip address of the streamlit app and possibly the port.
In this documentation, you should be able to create a config.toml file in each of your streamlit repos and then set the address.
Here is some copied and pasted relevant information that may help.

In a global config file at ~/.streamlit/config.toml for macOS/Linux or %userprofile%/.streamlit/config.toml for Windows:

[server]
port = 80
address=%IP_ADDRESS%

Here is where I referenced for the information. Let me know if this helps.

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.