Add protection from infinite redirect loops to curl-using plugins
[collectd.git] / src / nginx.c
index f1f3f99..a73e4d2 100644 (file)
@@ -143,6 +143,7 @@ static int init (void)
   }
 
   curl_easy_setopt (curl, CURLOPT_FOLLOWLOCATION, 1L);
+  curl_easy_setopt (curl, CURLOPT_MAXREDIRS, 50L);
 
   if ((verify_peer == NULL) || IS_TRUE (verify_peer))
   {