AnatomicJC
AnatomicJC
Thanks @jorgex1 for [your comment](https://github.com/jaegertracing/jaeger-operator/issues/294#issuecomment-616642204), it was very helpful :+1: :1st_place_medal:
Hi @jazzl0ver π·πΆπΊ The PASSBOLT_SSL_FORCE environment variable doesn't work in docker environment. We are aware of this issue and have an internal ticket under reference PB-8486 to handle it. It...
Hi @jscott304 and thanks for reporting this to us π We created an internal ticket to fix this under reference PB-14174. We will keep you posted as soon as the...
Hi @maxtruxa Thank you for this report. I understand your point but if you don't want any certbot nor nginx, why set `passbolt/nginx-configuration-three-choices select` to `auto` ? `auto` will trigger...
Hi @ChristianKippingKv-rlp and thanks for reporting this issue π We created an internal ticket under reference PB-14173 to handle this. We will keep you posted as soon as the fix...
For those interested, I added a script in [this related issue](https://github.com/vmware/vsphere-automation-sdk-python/issues/355#issuecomment-1870295459) to generate this dependency list.
Hi! I am interested for a documentation about how to setup a mirror. I am behind a corporate proxy and tried to setup a nginx configuration but I always get...
Hello guys, I implemented a home-made mirror written with python and Flask. I can now use `CYPRESS_DOWNLOAD_MIRROR="https://mymirror.local" cypress install` as described in the [doc](https://docs.cypress.io/guides/references/advanced-installation#Mirroring). Basically, if the cypress archive I...
In case you want just a webservice who serve directly file without caching: ```python from flask import Flask, Response, abort, request import requests app = Flask(__name__) @app.route('/desktop/') def get_cypress_file(version): platform...