You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 18, 2023. It is now read-only.
Everything self hosted running and able to access the gapi and gapi/auth and webserver etc.......but I have difficulty linking.
"The request by Google Home was malformed. Please try again in a few minute. If this problem persists, please contact the team of Kappelt gBridge. Invalid redirect Request!"
The Auth url does in fact have my Client ID correct....this is what the URL looks like where Google Home app takes me to Link...obscured my domain and Client ID
I also had some issues with that, url redirecting is tricky - after setting up letsencrypt for the SSL cert this ended up being my Nginx config:
events {
}
http {
resolver 127.0.0.11 ipv6=off;
server {
listen 443 ssl;
ssl_certificate /etc/letsencrypt/live/domain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/domain.com/privkey.pem;
ssl_protocols TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers ECDH+AESGCM:ECDH+AES256:ECDH+AES128:DHE+AES128:!ADH:!AECDH:!MD5;
#usually your public DNS name
server_name domain.com;
#SSL-settings and generic server options here
#the IP of the Docker host gBridge is running on
set $gbridge_host gbridge_web_1;
#the port you've defined for the gBridge web interface
set $gbridge_port 80;
location ~ ^/gapi(/.*)?$ {
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_pass http://$gbridge_host:$gbridge_port/gapi$1$is_args$args;
}
}
}
Note also to set the following in the docker config for gBridge web service:
Everything self hosted running and able to access the gapi and gapi/auth and webserver etc.......but I have difficulty linking.
"The request by Google Home was malformed. Please try again in a few minute. If this problem persists, please contact the team of Kappelt gBridge. Invalid redirect Request!"
The Auth url does in fact have my Client ID correct....this is what the URL looks like where Google Home app takes me to Link...obscured my domain and Client ID
The text was updated successfully, but these errors were encountered: