How can I redirect mydomain.com and any subdomain *.mydomain.com to www.adifferentdomain.com using NGINX?
mydomain.com
*.mydomain.com
www.adifferentdomain.com
I'm using this code for my sites
server { listen 80; listen 443; server_name .domain.com; return 301 $scheme://newdomain.com$request_uri; }