From 0325d10f4a50ac5c93110640663f6f75e93f32ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BChler?= Date: Wed, 11 Aug 2010 12:49:32 +0200 Subject: [PATCH] [mod_balancer] fix comments --- src/modules/mod_balancer.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/modules/mod_balancer.c b/src/modules/mod_balancer.c index fff2834..6362499 100644 --- a/src/modules/mod_balancer.c +++ b/src/modules/mod_balancer.c @@ -12,8 +12,11 @@ * balance.rr - balance between actions (list or single action) with RoundRobin * balance.sqf - balance between actions (list or single action) with SQF * + * Be careful: these actions may get executed more than once (until one is successful!), + * so don't loop rewrites in them or something similar + * * Example config: - * balance.rr { fastcgi "127.0.0.1:9090"; }; + * balance.sqf ( ${ fastcgi "127.0.0.1:9090"; }, ${ fastcgi "127.0.0.1:9091"; } ); * * Author: * Copyright (c) 2009-2010 Stefan Bühler