Desi Programmer @ Work

Domain redirection with nginx

Redirecting domains with nginx is pretty simple:

server {  
    listen 80;  
    server\_name example.com;  
    rewrite \^/(.\*) http://parkedsite.example.com/$1 permanent;  
}