Created
January 24, 2022 14:26
-
-
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
This file contains hidden or 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
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