#Can't Find You on Discord
1 messages · Page 1 of 1 (latest)
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;
}
}
@fringe palm any ideas on what could be up?
I can’t see the text in the file. I’m on mobile phone right now
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
That should be everything, docker logs, configs, and nginx proxy
have you put the vocard and the dashboard in the same docker network?
Yep they are all on the same network
On the same host machine
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
Changed the IPC host to the container name and still seeing the same issue
docker logs
Can you run "docker ps" and show us your docker-compose.yml?
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

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
yes in beta verison