Hi all, a stupid question. I was deploying a Prefe...
# ask-community
d
Hi all, a stupid question. I was deploying a Prefect Server on a remote machine - are there any settings needed to be able to view the UI from the local machine?
k
I just recently got a working deployment of the server up. I used the docker-compose.yml file directly and deployed onto AWS ElasticBeanstalk. The only real change that I needed in the compose file was updating the
PREFECT_SERVER__APOLLO_URL
environment variable for the
ui
container to something like
<https://your-domain.com:4200/graphql>
upvote 1
Otherwise the client was making graphql calls to
localhost:4200
k
Kyle is exactly right, just a note that there is something wrong with
prefecthq/ui:core-0.15.3
so you should use
prefecthq/ui:core-0.15.2
for now. For the UI specifically, you need port 8080 open for access. Fix for the UI image is planned to be released today.
d
Many thanks guys!