How to redirect domain to www url with Nginx

(P) Codever is an open source bookmarks and snippets manager for developers & co. See our How To guides to help you get started. Public bookmarks repo on Github - Star
This post presents the snippet from the Nginx configuration that redirects all request to https://www.codever.land:
# redirect HTTP to www
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name bookmarks.dev www.codever.land;
return 301 https://www.bookmarks.dev$request_uri;
}
# redirect HTTPS to wwww
server {
listen 443;
server_name bookmarks.dev;
return 301 https://www.bookmarks.dev$request_uri;
}
Note the missing
www.codever.land
in the secondserver/server_name
entry, to avoid an infinite loop
Lots of other good Nginx resources can be found if you search for the nginx tag on codingmarks: https://www.codever.land?q=[nginx]
Source code for codever.land is available on Github -
Star