Default setup works
If I start my application as follows:
streamlit run Fed_Net_Liquidity.py
I can access the app here:
http://24.199.124.110:8501/
The issue
If I do the following however:
streamlit run --browser.serverAddress dharmatech.dev Fed_Net_Liquidity.py
And go to:
http://dharmatech.dev:8501/
I get the following:
This is on:
Ubuntu 22.04.4 LTS
Question
What’s a good way to get the streamlit app to be served at:
http://dharmatech.dev:8501/
I currently have apache running on the same server. However, it’s running on port 80 and 443, so it seems that shouldn’t interfere with this streamlit app on a different port.
Any suggestions welcome!