Results 2 comments of Sean Pan

最简单办法是直接将docker-compose里的nginx端口修改成其他端口,host nginx 反代过去即可, 下面提供一个不含 nginx 容器的方案,移除了docker-compose里的nginx后,将outline和 oicd 端口暴露出来,同时oicd的回调需要做出改动,否则会认证失败(env.oidc的内容修改更好的办法是用config.sh里的URL环境变量替换,而不是硬编码进去),最后将使用docker-compose里的nginx配置文件应用到host到nginx即可 `config.sh` 基本不改,URL 设置成你最后的访问地址如: `https://wiki.example.com` 之后做出如下改动,以下内容可以保存成patch,使用 git apply ``` diff --git a/Makefile b/Makefile index cb7fb67..97091ca 100644 --- a/Makefile +++ b/Makefile @@ -7,13 +7,11...