Guillaume Calmettes
Guillaume Calmettes
I was able to successfully serve the UI on a subpath (k8s ingress) using: ``` extraEnvVars: - name: MINIO_CONSOLE_SUBPATH value: "/minio/" - name: MINIO_BROWSER_REDIRECT_URL value: "https://your-minio-dns.com/minio/" ``` (note the second...
Update: With image `RELEASE.2022-04-29T01-27-09Z`, only `MINIO_BROWSER_REDIRECT_URL` seems necessary. However, to access the UI, the full login path (`http://minio-dns.com/subpath/login`) has to be explicitely entered (only entering `http://minio-dns.com/subpath/` redirects to `http://minio-dns.something/subpath/subpath/login`. The...
@dvaldivia If that helps, below is a local `docker-compose` setup with which you can easily reproduce the redirection issue: - `docker-compose.yml` ``` version: '3.9' services: nginx: image: nginx networks: -...
It seems that #22 fixes the callback issue but still has to be merged (still the deprecation warning for the Tapable.plugin is present but the plugin works with Webpack 4...
Same issue when running scheduled [kedro](https://github.com/kedro-org/kedro) pipelines using celery tasks, as `kedro` has `ffspec` as dependency. Downgrading to `ffspec==0.8.7` and `s3fs==0.5.2` is enough to fix the problem, but not being...
Great idea. I will look into this, but on the top of my head what you could do is add a conditional statement to load the data if there is...
Hi @sergeyplis , Sorry for the late reply. I am in the process of updating this to the new Reveal.js 4.x.x syntax, so I won't update the current version. However,...
useful addition, thanks @mungerd!
@dakling @cxkoda you can add fragments to LaTeX equations by tweaking the `math.js` plugin. See [this version](https://github.com/gcalmettes/reveal.js-webpack-kit/blob/master/src/_scripts/reveal-plugins/math-gc.js) and [demo](https://gcalmettes.github.io/reveal.js-latex-fragments/index.html)
@cxkoda I never had a problem with this. Note however that I usually use `reveal.js` and this modified `math.js` version in a framework compiled using webpack (see [this repo](https://github.com/gcalmettes/reveal.js-webpack-kit)), so...