Docker.Official.Image icon indicating copy to clipboard operation
Docker.Official.Image copied to clipboard

keeps loading 3 dots when accessing the domain

Open nelajc opened this issue 2 years ago • 4 comments

hi,

anyone can help pls.. seeing this meteor_runtime 404 when accessing rocketchat domain and just keeps loading 3 dots. image

deployed via docker-compose and using nginx reverse proxy and cloudflare. also i am able to continue in setup wizard when i just access it thru http://ipaddress.


# Rocket.Chat version
# see:- https://github.com/RocketChat/Rocket.Chat/releases
RELEASE=6.4.5
# MongoDB endpoint (include ?replicaSet= parameter)
#MONGO_URL=mongodb
# MongoDB endpoint to the local database
#MONGO_OPLOG_URL=mongodb
# IP to bind the process to
BIND_IP=127.0.0.1 ## already tried 0.0.0.0 also
# URL used to access your Rocket.Chat instance
ROOT_URL=https://rocketchat.example.com
# Port Rocket.Chat runs on (in-container)
PORT=3000
# Port on the host to bind to
HOST_PORT=3000

### MongoDB configuration
# MongoDB version/image tag
MONGODB_VERSION=5.0.22
# See:- https://hub.docker.com/r/bitnami/mongodb```

nelajc avatar Nov 10 '23 04:11 nelajc

I noticed this too, it looks like it's trying to load a js library from whatever your ROOT URL is, obviously if you're behind a reverse proxy, this won't work. I'll post a solution if I figure it out.

fluxoz avatar Dec 01 '23 07:12 fluxoz

I got it working, but am being forced to register a cloud account. Which kind of defeats the whole purpose of self-hosting for me. I'll be looking elsewhere for an actual FOSS project.

fluxoz avatar Dec 01 '23 10:12 fluxoz

I got it working, but am being forced to register a cloud account. Which kind of defeats the whole purpose of self-hosting for me. I'll be looking elsewhere for an actual FOSS project.

what did you do?

bw-kleos avatar Dec 17 '23 15:12 bw-kleos

Change your IP accordingly or with your hostname

### Rocket.Chat configuration

# Rocket.Chat version
# see:- https://github.com/RocketChat/Rocket.Chat/releases
#RELEASE=
# MongoDB endpoint (include ?replicaSet= parameter)
#MONGO_URL=
# MongoDB endpoint to the local database
#MONGO_OPLOG_URL=
# IP to bind the process to
BIND_IP=172.16.6.11
# URL used to access your Rocket.Chat instance
ROOT_URL=http://172.16.6.11
# Port Rocket.Chat runs on (in-container)
PORT=80
# Port on the host to bind to
#HOST_PORT=

### MongoDB configuration

# MongoDB version/image tag

#MONGODB_VERSION=
# See:- https://hub.docker.com/r/bitnami/mongodb

### Traefik config (if enabled)

# Traefik version/image tag
#TRAEFIK_RELEASE=
# Domain for https (change ROOT_URL & BIND_IP accordingly)
# DOMAIN=chat.kraftsix.net
# Email for certificate notifications
#LETSENCRYPT_EMAIL=

chinnambhrt avatar Dec 24 '23 01:12 chinnambhrt