Desi Founder @ work

Sharjeel Ahmed Qureshi

« Back to posts
  • Viewed
    times
August 25, 2010

Domain redirection with nginx

  • Edit
  • Delete
  • Tags
  • Autopost
Redirecting domains with nginx is pretty simple:

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

Tweet
  • 0 responses
  • Like
  • Comment