Crazy Volt
Crazy Volt

Reputation: 89

Bull Board UI stuck on "Loading"

In localhost the im using /admin route, and it displays the Bull board.

But On Production Environment ( which is hosted on AWS ) , It is stuck on Loading... phase

enter image description here enter image description here

Please Give me info what Im doing wrong

Upvotes: 0

Views: 520

Answers (2)

Ankit Kumar
Ankit Kumar

Reputation: 1

serverAdapter.setBasePath('/admin/showroom/queues');

app.use('/admin/showroom/queues', [auth.getToken, auth.authAdmin], serverAdapter.getRouter());

both serverAdapter.setBasePath and server path must be same

Upvotes: 0

Crazy Volt
Crazy Volt

Reputation: 89

I was using http://localhost:/admin ( as bull board is configured on /admin route )

But on Production Env. My was using http://ip/admin and getting error

I searched and figured it out that I need to pass port number with IP.

So Solution is:

https://current-ip:4000/admin

Upvotes: 0

Related Questions