for those hitting issue #2237 (`localhost` hardcod...
# ask-community
m
for those hitting issue #2237 (
localhost
hardcoded in the UI) when deploying Server to an external server, this stopgap might help you get going:
Copy code
socat TCP-LISTEN:4200,fork,reuseaddr TCP:your.prefect.api.host:4200
(TCP proxy from
localhost:4200
to the external Prefect API server)
upvote 2