You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi guys,
I have Shopizer docker image is up and running in VM.
I have an issue, when images are failed to be loaded due to Shopizer makes GET request to localhost, not virtual machine external IP. http://localhost:8080/static/products/DEFAULT/374391/SMALL/image81730.jpg - it fails due to ERR_CONNECTION_REFUSED and image shown as broken:
I would expect to see http://${VM_EXTERNAL_IP}:8080/static/products/DEFAULT/374391/SMALL/image81730.jpg
I made some research of how I can fix this.
Here #598 (comment) guys recommending to change Store base url (domain) in Admin portal.
But I don't have such field in my Admin:
Can you please suggest where I can change Store base url from localhost to external VM IP?
Thank you in advance.
The text was updated successfully, but these errors were encountered:
Issue solved regarding store based url ERR_CONNECTION_REFUSED
step 1 : Keep up and running the docker backend by using this comments
docker run
-e "APP_BASE_URL=http://localhost:8080/api"
-p 82:80 shopizerecomm/shopizer-admin
step 2:keep running the frontend by this commends
docker run
-e "APP_MERCHANT=DEFAULT"
-e "APP_BASE_URL=http://localhost:8080"
-p 80:80 shopizerecomm/shopizer-shop-reactjs
step 3: Go to browser and ru the front end
Hi guys,
I have Shopizer docker image is up and running in VM.
I have an issue, when images are failed to be loaded due to Shopizer makes GET request to localhost, not virtual machine external IP.
http://localhost:8080/static/products/DEFAULT/374391/SMALL/image81730.jpg - it fails due to ERR_CONNECTION_REFUSED and image shown as broken:
I would expect to see http://${VM_EXTERNAL_IP}:8080/static/products/DEFAULT/374391/SMALL/image81730.jpg
I made some research of how I can fix this.
Here #598 (comment) guys recommending to change Store base url (domain) in Admin portal.
But I don't have such field in my Admin:
Can you please suggest where I can change Store base url from localhost to external VM IP?
Thank you in advance.
The text was updated successfully, but these errors were encountered: