Skip to content

Instantly share code, notes, and snippets.

@kmjones1979
Created November 17, 2016 04:55
Show Gist options
  • Save kmjones1979/53ef32aa6c9c7083ea6c3eb6adc918af to your computer and use it in GitHub Desktop.
Save kmjones1979/53ef32aa6c9c7083ea6c3eb6adc918af to your computer and use it in GitHub Desktop.
Example NGINX Plus load balancer configuration - ODW 2016
server {
listen 80;
server_name example.com *.example.com;
status_zone example_com_80;
location / {
proxy_pass http://backend;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment