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
log.warn("WARNING: Using server.use-forward-headers will not work in this ShinyProxy release, you need to change your configuration to use another property. See https://shinyproxy.io/documentation/security/#forward-headers on how to change your configuration.");
if (sameSiteCookiePolicy.equalsIgnoreCase("none") && !secureCookiesEnabled) {
129
+
log.warn("WARNING: Invalid configuration detected: same-site-cookie policy is set to None, but secure-cookies are not enabled. Secure cookies must be enabled when using None as same-site-cookie policy ");
130
+
}
122
131
}
123
132
124
133
@Autowired(required = false)
@@ -134,13 +143,12 @@ public UndertowServletWebServerFactory servletContainer() {
if (request.getScheme().equals("http") && ContainerProxyApplication.secureCookiesEnabled) {
109
+
logger.warn("WARNING: Invalid configuration detected: ShinyProxy is accessed over HTTP but secure-cookies is enabled. Secure-cookies only work when accessing ShinyProxy over HTTPS. "
110
+
+ "Ensure that ShinyProxy is accessed over HTTPS or disable secure-cookies");
0 commit comments