Skip to content

Instantly share code, notes, and snippets.

@sj82516
Created April 7, 2019 14:04
Show Gist options
  • Select an option

  • Save sj82516/3d905f00ae8d3bfb734cedf0a618614d to your computer and use it in GitHub Desktop.

Select an option

Save sj82516/3d905f00ae8d3bfb734cedf0a618614d to your computer and use it in GitHub Desktop.
events {
worker_connections 1024;
}
http {
keepalive_timeout 65;
server {
listen 80;
location / {
proxy_pass http://host.docker.internal:3000;
proxy_http_version 1.1;
proxy_set_header Host $host;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment