Created
November 17, 2016 04:55
-
-
Save kmjones1979/53ef32aa6c9c7083ea6c3eb6adc918af to your computer and use it in GitHub Desktop.
Example NGINX Plus load balancer configuration - ODW 2016
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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