Skip to content

Instantly share code, notes, and snippets.

@ziedHamdi
Created November 16, 2021 12:17
Show Gist options
  • Select an option

  • Save ziedHamdi/7c6bea0b339f9ed5fdbf97d75fa419d4 to your computer and use it in GitHub Desktop.

Select an option

Save ziedHamdi/7c6bea0b339f9ed5fdbf97d75fa419d4 to your computer and use it in GitHub Desktop.
Nginx simplest configuration
server {
listen 80;
location / {
proxy_pass http://next_server:3000;
}
location /api/rest/ {
proxy_pass http://graphql_server:4000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment