Ajouter 'two_public_ip/reverse_failover_nginx.md'

master
Pierre Coimbra 2019-11-23 23:24:05 +01:00
parent e34df15f8c
commit 1919950e90
No known key found for this signature in database
GPG Key ID: F9C449C78F6FAEE6
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
# Template reverse proxy avec Failover NGINX
```
upstream <nom_service> {
server <ip_service_ct_principal>:443 fail_timeout=60s max_fails=1;
server <ip_service_ct_backup>:443 backup;
}
```