Skip to content

Instantly share code, notes, and snippets.

@ReedD
Created November 9, 2016 17:40
Show Gist options
  • Save ReedD/b4a3bcac6e2f9e6891608b1bf168017e to your computer and use it in GitHub Desktop.
Save ReedD/b4a3bcac6e2f9e6891608b1bf168017e to your computer and use it in GitHub Desktop.
Nginx Reverse Proxy
server {
listen 80;
server_name *.domain.tld;
merge_slashes off;
location / {
proxy_pass http://somealternatedomain.tld;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment