Skip to content

Instantly share code, notes, and snippets.

@arellano-gustavo
Created January 24, 2022 14:26
Show Gist options
  • Save arellano-gustavo/20caf4c1fc7f6d32ca90a06973fc96ad to your computer and use it in GitHub Desktop.
Save arellano-gustavo/20caf4c1fc7f6d32ca90a06973fc96ad to your computer and use it in GitHub Desktop.
Archivo de configuración de nginx que uso para balancear un servicio
upstream balanceador {
server srv02:9001;
server srv02:9002;
server srv02:9003;
}
server {
server_name balanceador.qbits.mx;
location / {
proxy_pass http://balanceador;
}
include common/ssl.conf;
include common/error.conf;
include common/last.conf;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment