This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import streamlit as st | |
| st.title("Streamlit with Nginx Reverse Proxy") | |
| st.write("This app is being served through Nginx at a custom URL path!") | |
| # Add some example content | |
| st.header("Sample Interactive Elements") | |
| slider_value = st.slider("Select a value", 0, 100, 50) | |
| st.write(f"You selected: {slider_value}") |