2

我有一个服务器正在运行Caddy,可以在域rv2680.1blu.demarleneschulz.info. 两个 DNS A 记录都指向 IP 地址178.254.7.175。我想确保Caddy始终将用户重定向到https://marleneschulz.info.

这是我的工作Caddyfile

www.marleneschulz.info {
    redir https://marleneschulz.info
}

https://marleneschulz.info {
    root /app/marlene/shared

    proxy / django_prod:5000 {
        header_upstream Host {host}
        header_upstream X-Real-IP {remote}
        header_upstream X-Forwarded-Proto {scheme}

        except /static
    }

    log stdout
    errors stdout
    gzip
}

如何通过明确定义从、、和to重定向每个请求来防止Caddy响应?404 Site rv2680.1blu.de is not served on this interfacerv2680.1blu.de:80rv2680.1blu.de:443178.254.7.175:80178.254.7.175:443marleneschulz.infohttps://marleneschulz.info

我也有点困惑,因为文档没有说明www.前缀。我想尽可能明确。

4

1 回答 1

3

您可以定义几个包罗万象的站点并重定向它们:

http://, https:// {
    redir https://marleneschulz.info{uri}
}

(我添加{uri}是因为我假设您想在重定向中保留 URI。)

http://, https://用作站点地址与使用:80, :443.

www前缀也没有什么特别之处。如果你想枚举所有你想重定向的网站,你可以指定www.marleneschulz.info为其中之一,就像任何其他网站一样。

于 2018-03-16T16:54:58.687 回答