Cross-site tracker on streamlit app?

I am hosting a streamlit app on an Amazon EC2 instance, and when I access the site using Brave browser I am alerted that a cross-site tracker is being blocked.

The address of the tracker is: https://cdn.segment.com/analytics.js/v1/iCkMy7ymtJ9qYzQRXkQpnAJEq7D4NyMU/analytics.min.js

Is there a way to turn this tracker off? Is there anything about this tracking being enabled by default in the docs?

Would appreciate some more info on this.

From configuration docs

# Enables support for Cross-Origin Request Sharing (CORS) protection, for added security.
# Due to conflicts between CORS and XSRF, if `server.enableXsrfProtection` is on and `server.enableCORS` is off at the same time, we will prioritize `server.enableXsrfProtection`.
# Default: true
enableCORS = true

I guess this is what you are looking for.

Set gatherUsageStats = false in your configuration file.

1 Like

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