Skip to content

Instantly share code, notes, and snippets.

@kmjones1979
Created November 17, 2016 04:53
Show Gist options
  • Save kmjones1979/b66a630f2f736fac17fc8367c061e663 to your computer and use it in GitHub Desktop.
Save kmjones1979/b66a630f2f736fac17fc8367c061e663 to your computer and use it in GitHub Desktop.
Example NGINX Plus backend configuration
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