尽管网上有很多例子我已经尝试了很多东西,特别是使用 if 语句,但到目前为止我无法正确设置我的虚拟主机
所以我的虚拟主机是
a1.example.com
www.a1.example.com should redirect to https://a1.example.com
a1.example.com should redirect to https://a1.example.com
目标是每次都将其重定向到 https 非 www。
到目前为止,这是我的虚拟主机,我正在使用 certbot
server {
server_name a1.example.com www.a1.example.com;
root /var/www/example/build;
index index.html index.htm;
location / {
try_files $uri $uri/ =404;
}
listen [::]:443 ssl ipv6only=on; # managed by Certbot
listen 443 ssl; # managed by Certbot
ssl_certificate /etc/letsencrypt/live/a1.example.com/fullchain.pem; # managed by Certbot
ssl_certificate_key /etc/letsencrypt/live/a1.example.com/privkey.pem; # managed by Certbot
include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
}
server {
if ($host = a1.example.com) {
return 301 https://$host$request_uri;
}
listen 80;
listen [::]:80;
server_name a1.example.com www.a1.example.com;
return 404; # managed by Certbot
}
这确实从http重定向到https,但我无法将www重定向到nonwww
我当前的 dns 记录是
A @ IP
A a1 IP
CNAME www domain
CNAME www.a1 www.a1.domain
我认为@MichaelHampton在这里给出了关于这个主题的最佳答案。作为快速修复,您可以添加
到您的 HTTPS 服务器块并将
if ($host = a1.example.com) { ... }
HTTP 服务器块更改为无论如何,我完全同意 Michael Hampton 的观点,即您不应该允许 certbot 更改您的 nginx 配置并将其仅用于获取/更新证书(请参阅他对编写良好的 nginx 配置示例的回答)。