Changed domain to floki.cc. That’s it.
Finally got around to change the domain name from floki.blog to floki.cc . Still a bit annoyed about myself that I got tricked by the cheap initial price for the .blog domain. After the first year it’s just an utterly rip off.
Lessons learnt: 1) Check the long term domain prices. 2) How to setup redirect from the old domain in nginx:
server {
listen 80 ;
listen 443 ;
server_name www.floki.blog floki.blog;
return 301 https://floki.cc$request_uri;
}