#Can't Find You on Discord

1 messages · Page 1 of 1 (latest)

untold comet
#

Heya running into this issue of "Cant find you on discord" on my self hosted bot behind an nginx proxy, any ideas on what coudl be the issue? Setup with docker compose and all on the same machine

#
root@nginx-external:/etc/nginx/sites-available# cat tafu.casa
map $http_upgrade $connection_upgrade {
    default upgrade;
    ''      close;
}

# HTTPS for music
server {
    listen 443 ssl http2;
    server_name music.tafu.casa;

    ssl_certificate /etc/letsencrypt/live/music.tafu.casa/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/music.tafu.casa/privkey.pem;

    location / {
        proxy_pass http://192.168.3.10:8080;

        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto https;

        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";

        proxy_read_timeout 86400;
    }
}
untold comet
#

@fringe palm any ideas on what could be up?

fringe palm
#

I can’t see the text in the file. I’m on mobile phone right now

untold comet
#

That should be everything, docker logs, configs, and nginx proxy

fringe palm
#

have you put the vocard and the dashboard in the same docker network?

untold comet
#

On the same host machine

fringe palm
#

On the same DOCKER network?

#

If yes you should use the dashboard container name instead of 0.0.0.0 in the ipc_client host

untold comet
#

Changed the IPC host to the container name and still seeing the same issue

surreal glacier
fringe palm
#

seems fine

#

make sure you started the dashboard first

untold comet
#

Yep that seemed to do the trick:

finn-rm@silver-cl:~$ docker stop $(docker ps -q)
11f58f0f8ef5
0a28f05986f2
587cd45b8adb
763218d3adb5
d70d4f90d3ca
a3d6abfc6f67
173c5d4615b7
finn-rm@silver-cl:~$ docker start vocard-dashboard
vocard-dashboard
finn-rm@silver-cl:~$ docker start vocard-db
docker start lavalink
docker start yt-cipher
docker start spotify-tokener
docker start vocard
docker start watchtower
vocard-db
lavalink
yt-cipher
spotify-tokener
vocard
watchtower
finn-rm@silver-cl:~$
#

Dashboard is working now

fringe palm
untold comet
#

Do you have any endpoints to check on the status of the dashboard

#

Like /status or /health or something, i'd like to add a depends_on condition to my docker-compose so it starts in the correct order

fringe palm
#

yes in beta verison

untold comet
#

noice, i'll check it out

#

feel free to close the ticket 🙂 ty for the help