将多个站点地址/标签(包括IP)重定向到Caddyfile中的特定站点/标签

时间:2018-03-16 16:15:55

标签: caddy caddyfile

我有一个运行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
}

如何阻止Caddy回复,例如404 Site rv2680.1blu.de is not served on this interface明确定义将每个请求从rv2680.1blu.de:80rv2680.1blu.de:443178.254.7.175:80178.254.7.175:443marleneschulz.info重定向到https://marleneschulz.info?< / p>

我也有点困惑,因为docs状态没有关于www.前缀。 我希望尽可能明确。

1 个答案:

答案 0 :(得分:2)

您可以定义几个全能网站并重定向它们:

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

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

使用http://, https://作为网站地址与使用:80, :443相同。

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