I just started to use Streamlit and I want to use streamlit with a webserver(such as nginx, apache or whatever you suggest).
For now, I just tried to use with NGINX but it is not working on nginx. If you help me to solve NGINX issue, it would be great. Or I am open to all other webserver suggestions.
[server]
# port=80 # change port number. By default streamlit uses 8501 port
headless=true # This will eliminate automatically open browser
enableCORS=false
enableXsrfProtection=false
enableWebsocketCompression=false
2023/05/30 13:58:21 [error] 18787#18787: *1 open() "/usr/share/nginx/html/common/css/styles.css" failed (2: No such file or directory), client: 127.0.0.2, server: 127.0.0.1, request: "GET /common/css/styles.css HTTP/1.1", host: "127.0.0.1", referrer: "http://127.0.0.1/en-US/index.html"
Iโm not sure, but from the error in this log I understand that NGINX is trying to access the streamlit files from /usr/share/nginx/html/ directory and thatโs why Iโm getting the error. but I have no idea how to fix it. Can you help me?