Hi I'm having issues getting the dashboard to work as per the image.
My dashboard settings:
{
"host": "127.0.0.1",
"port": "8000",
"password": "<DASH_PASS>",
"redirect_url": "https://vocard.domain.com/callback"
}
My vocard settings (the IPC part):
"ipc_client": {
"host": "127.0.0.1",
"port": 8000,
"password": "<DASH_PASS>",
"secure": false,
"enable": true
},
My nginx config (i have a wildcard cert):
server {
server_name vocard.domain.com;
location / {
proxy_pass http://127.0.0.1:8000;
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 $scheme;
proxy_read_timeout 600s;
proxy_send_timeout 600s;
}
include /etc/nginx/ssl_cert.conf;
}
I added the bot to my server with the following URL, so not sure if i'm missing some perms: https://discord.com/oauth2/authorize?client_id=<MY_BOT_CLIENT_ID>&scope=bot&permissions=377960279040