我有一个运行Caddy
的服务器,可以在域rv2680.1blu.de
和marleneschulz.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:80
,rv2680.1blu.de:443
,178.254.7.175:80
,178.254.7.175:443
和marleneschulz.info
重定向到https://marleneschulz.info
?< / p>
我也有点困惑,因为docs状态没有关于www.
前缀。
我希望尽可能明确。
答案 0 :(得分:2)
您可以定义几个全能网站并重定向它们:
http://, https:// {
redir https://marleneschulz.info{uri}
}
(我添加了{uri}
,因为我假设您要在重定向中保留URI。)
使用http://, https://
作为网站地址与使用:80, :443
相同。
www
前缀也没什么特别之处。如果您想枚举要重定向的所有网站,则可以将www.marleneschulz.info
指定为其中一个,就像其他任何网站一样。