Closed GreatBigWhiteWorld closed 1 year ago
试试caddy官方工具?
我不会caddy,帮不到你。
试试caddy官方工具?
这工具转换不了,很多类型不支持而且好像有很多bug
你好,还需要吗?总之先放下面了🤔
{
auto_https disable_redirects
servers 127.0.0.1:5000 {
listener_wrappers {
proxy_protocol
}
protocols h1 h2 h2c h3
}
}
# 假服务器,用于欺骗caddy自动续签证书。
example.com:8443 {
root * /usr/share/caddy
file_server
bind 127.0.0.1
}
# 由于自动https跳转不可用,所以手动实现https跳转。caddy自动续签证书也需要这个配置。
:80 {
redir https://{host}{uri} permanent
# 以下配置为单次使用,仅在第一次申请证书时有用,当下面配置启用时上面配置需要被注释。
# root * /usr/share/caddy
# file_server
# log
}
# 回落服务器,用于处理xray的回落。
http://example.com:5000 {
root * /usr/share/caddy
file_server
log
bind 127.0.0.1
}
你好,还需要吗?总之先放下面了🤔
{ auto_https disable_redirects servers 127.0.0.1:5000 { listener_wrappers { proxy_protocol } protocols h1 h2 h2c h3 } } # 假服务器,用于欺骗caddy自动续签证书。 example.com:8443 { root * /usr/share/caddy file_server bind 127.0.0.1 } # 由于自动https跳转不可用,所以手动实现https跳转。caddy自动续签证书也需要这个配置。 :80 { redir https://{host}{uri} permanent # 以下配置为单次使用,仅在第一次申请证书时有用,当下面配置启用时上面配置需要被注释。 # root * /usr/share/caddy # file_server # log } # 回落服务器,用于处理xray的回落。 http://example.com:5000 { root * /usr/share/caddy file_server log bind 127.0.0.1 }
回头再弄,先谢谢了
Hello,因为我习惯了Caddy,所以我让ChatGPT把你的nginx.conf转换成对应的Caddy配置,感觉结果怪怪的,麻烦看下
AI发完配置说了以下几点: Please note the following points:
_1. The Nginx map directives are not directly translatable to Caddy. I've used substitute handler to replace occurrences in the response body. This may need further adjustment based on the actual content of the response.
Make sure to test thoroughly in a safe environment to ensure that the translation meets your specific requirements.