frontend-host options #3128
-
|
I need to debug via a remote machine, but how can I change the port for a frontend webpage? I am currently able to access the API documentation via http://ip:8000/docs, but I cannot access the website through http://ip:3000." I couldn't find a |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 12 replies
-
|
You can set the |
Beta Was this translation helpful? Give feedback.
-
|
according to docs: https://reflex.dev/docs/api-reference/config/ change rxconfig.py config = rx.Config(
app_name="blank",
frontend_port=8001,
deploy_url="http://0.0.0.0:8001/",
)But add a option |
Beta Was this translation helpful? Give feedback.
-
|
I think i'm still a bit confused by this discussion... the By default, the frontend should be available from other hosts without further configuration. |
Beta Was this translation helpful? Give feedback.
I think i'm still a bit confused by this discussion... the
deploy_urlonly affects the hosting service and the sitemap generation for export. From double checking the code,deploy_urlseems to change nothing about howreflex runserves the site.By default, the frontend should be available from other hosts without further configuration.