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;
}
listen 80;
server_name example.com;
rewrite ^/(.*) http://parkedsite.example.com/$1 permanent;
}