Skip to content

Instantly share code, notes, and snippets.

View nlopes-scc's full-sized avatar

Nilson Lopes nlopes-scc

  • Source Code Corp.
  • Massachusets, United States
View GitHub Profile
# USER: ubuntu
# PASS: Elefant09
# People should live in Sweden
d-i debian-installer/country string SE
# Computers should speak English
d-i debian-installer/language string en
d-i debian-installer/locale string en_US.UTF-8
d-i localechooser/preferred-locale string en_US.UTF-8
@nlopes-scc
nlopes-scc / api_backends.conf
Created November 7, 2023 20:49 — forked from nginx-gists/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;