Caddy HTTP 到 HTTPS 跳转

所有网站均不自动跳转 HTTPS

在 Caddyfile 的全局选项中指定 auto_https disable_redirects,参见文档

某个网站 HTTP 不自动跳转 HTTPS

1
2
3
4
http://example.com:80 https://example.com {
        root * /var/www
        file_server
}
0%