ClipCascade
ClipCascade copied to clipboard
The problem with the Android connection
1
2
Both of these issues appear in version 3.1 (the clients on the server are all 3.1 and the connections are normal), and the second one occurs frequently.
I just installed it and am also getting no set cookie on my android
I had to add this to my server environment
# Tell the app it's behind a proxy using HTTPS
- SERVER_FORWARD_HEADERS_STRATEGY=framework # Spring ≥2.6
# (If you're on older Spring, also add: SERVER_USE_FORWARD_HEADERS=true)
# Force secure cookie + modern SameSite
- SERVER_SERVLET_SESSION_COOKIE_SECURE=true
- SERVER_SERVLET_SESSION_COOKIE_SAME-SITE=None # or Lax if no cross-site needs
I am running clipcascade behind traefik reverse proxy which is handling my https termination.
It's working for me now
Thank you, same problem! This fixed it.