Skip to content

Instantly share code, notes, and snippets.

@edgarMeinart
Created August 5, 2020 13:16
Show Gist options
  • Save edgarMeinart/5799987d58547f8593221fc2b46586ec to your computer and use it in GitHub Desktop.
Save edgarMeinart/5799987d58547f8593221fc2b46586ec to your computer and use it in GitHub Desktop.
NGINX conf
# abc.example.com
server {
listen 80;
server_name abc.example.com;
location / {
proxy_pass http://127.0.0.1/abc$request_uri;
proxy_set_header Host example.com;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment