Hej,我试图为我的CI环境设置一个bazel缓存,到目前为止所有人都没有使用ssl,但是当我使用我喜欢的自签名证书启用nginx ssl时,一切都爆炸......
我正在使用.bazelrc:
build:remote --spawn_strategy=remote
build:remote --remote_local_fallback
build:remote --genrule_strategy=sandboxed
build:remote --remote_rest_cache=https://localhost:443
当我使用没有SSL的nginx进行测试时,你猜对了:
build:remote --remote_rest_cache=http://localhost:80
生活中的SSL方面并没有真正起作用。我试图浏览文档和irc频道的答案,但没有运气,所以希望有人能给我一个关于如何使用ssl&&的直接答案。在bazel远程缓存...
谢谢!