The site works! But when I upload an image to a Recipe or News item, the images do not display on the site. They are uploaded (I can find them on my server and manually navigate to their URLs in a browser.
Browser developer tools reveal that the GET requests for these images are sent to http://127.0.0.1:5210/... instead of my domain.
Is this because API_URL is set to 127.0.0.1:5210 in the .env files? Should it be set otherwise? Or is it something else?
I've just installed an OpenEats instance following this guide: https://github.com/open-eats/OpenEats/blob/master/docs/Running_the_App_Without_Docker.md (So, no Docker)
The site works! But when I upload an image to a Recipe or News item, the images do not display on the site. They are uploaded (I can find them on my server and manually navigate to their URLs in a browser.
Browser developer tools reveal that the GET requests for these images are sent to
http://127.0.0.1:5210/...
instead of my domain.Is this because
API_URL
is set to127.0.0.1:5210
in the.env
files? Should it be set otherwise? Or is it something else?