我在我的 Caddyfile 中的 caddy 上设置自定义 http 和 https 端口时遇到问题,并且无法使用 google 和 stackoverflow 找到答案
我可以像这样设置一个自定义的 http 端口:
http://example.com:2015
但我无法设置自定义 https 端口
http://example.com:2015
https://example.com:2016
因为 caddy 仅将第一行视为有效。
启动文件https://example.com:2016
将尝试将 http 绑定到已占用的端口 80
我只是想将 http 绑定到 2015 端口,将 https 绑定到 2016 端口
这是我当前的 Caddyfile:
http://example.com:2015
https://example.com:2016
gzip
log access.log
basicauth / username password
filemanager / /path {
database dbname.db
no_auth
}
感谢您的时间 :)