We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting callback URL mismiatch.
Running shiny app behind nginx which also handles ssl
auth0 callback URL contains
https://<SUBDOMAIN>.<DOMAIN>.<TLD>
_auth0.yml
name: app remote_url: 'https://<SUBDOMAIN>.<DOMAIN>.<TLD>' auth0_config: api_url: 'https://<USERNAME>.us.auth0.com' credentials: key: '<KEY>' secret: '<SECRET>'
nginx.conf
server { listen 443 ssl; server_name <SUBDOMAIN>.<DOMAIN>.<TLD> ; ssl_certificate /etc/letsencrypt/live/<SUBDOMAIN>.<DOMAIN>.<TLD>/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/<SUBDOMAIN>.<DOMAIN>.<TLD>/privkey.pem; location / { proxy_pass "http://127.0.0.1:8888"; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_read_timeout 600s; proxy_redirect off; proxy_set_header Host $http_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; } }
R
library(shiny) options(shiny.port=8888) runApp("app", port = 8888 , launch.browser = F)
Result:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Getting callback URL mismiatch.
Running shiny app behind nginx which also handles ssl
auth0 callback URL contains
_auth0.yml
nginx.conf
R
Result:
![image](https://private-user-images.githubusercontent.com/5902410/345155416-76ed98c7-e990-4df2-8ce1-7d1381285efa.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkyODA0NjQsIm5iZiI6MTczOTI4MDE2NCwicGF0aCI6Ii81OTAyNDEwLzM0NTE1NTQxNi03NmVkOThjNy1lOTkwLTRkZjItOGNlMS03ZDEzODEyODVlZmEucG5nP1gtQW16LUFsZ29yaXRobT1BV1M0LUhNQUMtU0hBMjU2JlgtQW16LUNyZWRlbnRpYWw9QUtJQVZDT0RZTFNBNTNQUUs0WkElMkYyMDI1MDIxMSUyRnVzLWVhc3QtMSUyRnMzJTJGYXdzNF9yZXF1ZXN0JlgtQW16LURhdGU9MjAyNTAyMTFUMTMyMjQ0WiZYLUFtei1FeHBpcmVzPTMwMCZYLUFtei1TaWduYXR1cmU9ZTNhYzBlYTFmYzA2ZGY1NGYwMDYwMGVkMjQ4MWFiMTU2ZTNlMGQxNzBjNDgzZWRmMjBmYTA0ZmUyMjQ2YTlmNiZYLUFtei1TaWduZWRIZWFkZXJzPWhvc3QifQ.rEw2WpvWHMhCEbnhb_NfD25rO48JE2_J1xEVLsmTSeE)
The text was updated successfully, but these errors were encountered: