Setup in documentation will lead to security warning when tryining to login
See original GitHub issueHello!
I use shinyproxy since 2,5 years, but since a few days I get a warning message when I try to login into our platform. I use nginx in combination with keycloak. My nginx.conf looks like this: SSL certs are linked as always, there is NO ERROR in the setup, it just produces a warning…
location / {
proxy_pass http://shinyproxy:4000; ### Übernahme der servicenamen aus Docker-compose
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-Protocol $scheme;
}
location /auth/ {
proxy_pass https://keycloak:8443; ### Übernahme der servicenamen aus Docker-compose
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 $scheme;
}
This is the warning triggered:
The setup is directly taken from here: https://www.shinyproxy.io/security/
It only happens on Google Chrome, but since it is the most common browser, this is an issue. Have you already encountered this and/or maybe have an idea how to fix it?
Thank you, Markus
Issue Analytics
- State:
- Created 3 years ago
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Enable or disable security alerts about links and files from ...
In an Office program, click the File tab. Click Options. Click Trust Center, and then click Trust Center Settings. Click Privacy Options.
Read more >I get a security warning in my browser when I try to log in to my ...
Microsoft Internet Explorer · Select the Tools tab in your browser. · Select Internet Options > Security. · Clear the Enable Protected Mode...
Read more >How to disable the security warning dialog before postscript to ...
Open the FeatureLockDown.plist file in any editor. ... Note: The security warning dialog is not displayed when the default value of the key...
Read more >How can I prevent the Security Warning when opening an ...
Likewise, Microsoft Office documents can also contain links (i.e., Data Connections) to your company data. A document containing Data Connections received from ...
Read more >Manage warnings about unsafe sites - Google Chrome Help
You'll see a warning if the content you're trying to see is dangerous or ... you start to visit might try to trick...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Sorry I didn’t realize that your example is copied from the documentation, so I will keep the issue open.
Thanks for reporting back, let’s close this issue for now.