> Is there a way to set the path of the cookies to /, regardless which GUI is used? Yes you can make nginx to change the cookie http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cookie_path If the path from the backend app is unknown you can probably use a regex to match everything: proxy_cookie_path ~*^/.* /; rr