Daniel Valdivia

Results 68 comments of Daniel Valdivia

I think we can default to something like 3-5 concurrent uploads from the browser, and let the user tweak the number of concurrent uploads via some user settings. Thoughts @bexsoft...

We can alternatively chunk the cookie, like we did for the hop usecase @Alevsk

Cookie Chunks 🍪🍪🍪🍪

@vincentbaeten do you see the `CLUSTER_DOMAIN` environment variable set on the `console` deployment in the `minio-operator` namespace?

your nginx config is missing a `rewrite_rule` you need to add `rewrite ^/minio/(.*) /$1 break;` to the console location directive ``` location /minio { proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr;...

yes, we removed `MINIO_CONSOLE_SUBPATH` in favor of `MINIO_BROWSER_REDIRECT_URL` as it implies the subpath and the domain the console will be accessed through, this has the downside that we only allow...

@vmire that sounds a like a simple bug to fix, can you file a separate issue for that?

I removed `MINIO_CONSOLE_SUBPATH` in favor of `MINIO_BROWSER_REDIRECT_URL` @harshavardhana The redirect you are seeing @gcalmettes sounds to me like a bug on our end, I'll investigate

@l-austenfeld that is correct, the console uses a temporary token (STS Token) which last less than 1 hour, we are looking into how to solve this problem so that share...