Skip to content

Instantly share code, notes, and snippets.

@nginx-gists
nginx-gists / api_backends.conf
Last active July 1, 2024 07:50 — forked from lcrilly/api_backends.conf
Deploying NGINX Plus as an API Gateway, Part 1
upstream warehouse_inventory {
zone inventory_service 64k;
server 10.0.0.1:80;
server 10.0.0.2:80;
server 10.0.0.3:80;
}
upstream warehouse_pricing {
zone pricing_service 64k;
server 10.0.0.7:80;
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 24, 2024 05:17
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example