Created
November 17, 2016 04:53
-
-
Save kmjones1979/b66a630f2f736fac17fc8367c061e663 to your computer and use it in GitHub Desktop.
Example NGINX Plus backend configuration
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 8001; | |
listen 8002; | |
server_name example.com *.example.com; | |
status_zone backend_800X; | |
location / { | |
return 200 "This is a server listening on $server_addr:$server_port \n"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment