Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pratheekhegde/c4af2052b23e2ebe72e7ac4dc627bdaa to your computer and use it in GitHub Desktop.
Save pratheekhegde/c4af2052b23e2ebe72e7ac4dc627bdaa to your computer and use it in GitHub Desktop.
Redirect subdomains in nginx
server {
server_name s1.website.com;
return 301 https://s2.website.com$request_uri;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment