Results 3 comments of ougato

我也遇到这个问题,但是从你们对话中,我找到 site_url 字段,并且修改为 "https://test.windmancloud.com:8443",可以正常下载了

@Windman1320 感谢您的回答,我又跑来找这个问题的解决方案,你的方式是快速解决这个问题的方式,在nginx反向代理中设置:proxy_set_header X-Forwarded-Proto https;

我在Makefile修改了生成命令,编译出了protobuf.so文件,代码修改成这样 修改前: $(CC) $(CFLAGS) -shared -o $@ -I../.. -I$(LUADIR) -L../../build $^ -lpbc 修改后: $(CC) $(CFLAGS) -shared -undefined dynamic_lookup -o $@ -I../.. -I$(LUADIR) -L../../build $^ -lpbc 希望能帮助到你