Hi, have just started with zrok and was trying to get openobserve shared but found the login fails due to its cookie not being received.
The POST response that sets the cookie makes it to the browser and on the next GET request the browser shows that it sent the cookie but it doesn't show as being received when in debug, in the caddy log or in a packet capture.
The openobserve cookie format looks like this:
auth_tokens={"access_token":"Basic YmxhaEBibGFoLmJsYWg6YmxhaA","refresh_token":""};
Have also been able to get it working using caddy by modifying the cookie on way down and correcting it on way back up:
#change to: auth_tokens=YmxhaEBibGFoLmJsYWg6YmxhaA
header_down Set-Cookie (.*?)(?:{"access_token":"Basic\s)(.*?)(?:","refresh_token":""})(.*) "$1$2$3"
#change back to: auth_tokens={"access_token": ..}
header_up Cookie (.*?auth_tokens=)(.*?)(\;.*|$) "$1{\"access_token\":\"Basic $2\",\"refresh_token\":\"\"}$3"
Just wondering if anyone else has noticed this and if it's expected or is this a bug?