bumblebee icon indicating copy to clipboard operation
bumblebee copied to clipboard

Login issue with bumblebee

Open nagarajmmu opened this issue 2 years ago • 2 comments

Hi

I have installed bumblebee for my project, everything works fine, till it load bumblebee login page. When I try to register in bumblebee login page (installed bumblebee login HTTP://HOST_IP:3000/login), it was trying to hit HTTPS://HOST_IP:443/auth/signup , Says Network error. But when I have verified, nothing was running in 443 port. I was running application in HTTP. it was trying to hit with HTTPS, also for auth URL it is using 443.

I have installed using docker image, using below command, #docker run --name bumblebee --network="host" -p 4000:4000 -e ADDRESS=HOST_IP hiprimus/bumblebee:develop

How to resolve this issue.

nagarajmmu avatar Feb 04 '22 08:02 nagarajmmu

Hi,

You should expose the port you configured, in this case it seems it can be done by using -p 443:443 and remember to configure the port of the backed using -e BACK_PORT=443 so it will look something like:

docker run --name bumblebee --network="host" -p 3000:3000 -p 443:443 -e ADDRESS=HOST_IP -e BACK_PORT=443 hiprimus/bumblebee:develop

luis11011 avatar Feb 04 '22 13:02 luis11011

Hi @nagarajmmu,

Does this work for you?

argenisleon avatar Mar 12 '22 01:03 argenisleon