felipegarciaign commented on code in PR #32589: URL: https://github.com/apache/superset/pull/32589#discussion_r1992999406
########## docs/docs/installation/pypi.mdx: ########## Review Comment: In the context of Apache Superset (VM deployed with Python & url HTTP), the -h 0.0.0.0 command is used to bind the Superset server to all available network interfaces on the host machine. Installin on a VM your navigator never reach Superset welcome page html: What it does: Binding to all interfaces: By specifying 0.0.0.0, the server listens for incoming connections on all network interfaces of the machine, not just localhost (127.0.0.1). Accessibility: This makes the Superset instance accessible from other devices on the same network, rather than being restricted to the local machine. When/Why to use it: Development and Testing: If you're developing or testing Superset and need to access it from another device (e.g., a tablet or another computer on the same network), this command is useful. Collaborative Work: When working in a team, you might want to share access to your Superset instance with colleagues on the same network. Demonstrations: For presenting dashboards or features to others in a local environment. However, for production environments, it's important to secure the server properly (e.g., using firewalls, HTTPS, and authentication) to prevent unauthorized access. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
