server {
server_name www.simplify.earth;
return 301 https://simplify.earth$request_uri;
}
server {
if ($host = simplify.earth) {
return 301 https://$host$request_uri;
} # managed by Certbot
listen 80;
listen [::]:80;
server_name simplify.earth;
return 404; # managed by Certbot
}