服务器配置
server:
# 服务器对外的访问 URL(包括端口),例如 http://localhost:3000
#
# 如果该选项为空,那么 URL 将从下面的 3 个选项获取:
# secure, domains, bind
#
# httpurl = (secure ? https : http) :// (domains[0]) : (bind port)
#
httpurl: http://localhost:4444
# 服务器绑定地址和端口,例如 127.0.0.1:8080 或者 :8080
# 可以为空,如果为空,将使用协议默认的端口,绑定到所有接口(0.0.0.0)
#
bind: :4444
# 是否允许 TLS(https)
# 如果不是通过反向代理,那么应该设置为 true,并提供相应的证书
#
# secure: true
# 自动从 Let's Encrypt 或其它支持 ACME 的 CA 获取证书
# 如果允许 autotls,那么 tls_key 和 tls_cert 将被忽略
#
autotls:
enabled: false
domains: [ your-domain, your-domain2 ]
cachedir: /tmp
email: service@lucky-byte.com
# TLS 私钥和证书文件
#
tlscrt: cert.pem
tlskey: key.pem