ol / Caddyfile
99i's picture
Create Caddyfile
d66431a verified
raw
history blame
267 Bytes
{
# 日志配置
log {
output stdout
format console
}
}
# 监听端口 80 和 443
:3000 {
# 代理 /hf/* 路径到根路径
handle_path /hf/* {
rewrite * {path.relative}
reverse_proxy http://localhost:11434
}
}