How configure httpd drizzle with nginx

`i configure nginx
download nginx.1.0.8
cd /nginx.1.0.8

./configure --prefix=/etc/nginx
–add-module=/home/rohittyagi/Downloads/chaoslawful-drizzle-nginx-module-74682b1/
–add-module=/home/rohittyagi/Downloads/agentzh-rds-json-nginx-module-74c21b3/

create virtual upstrem like

upstream backend {
drizzled_server 127.0.0.1:3306 dbname=vhost_dbi
password=root user=root protocol=mysql;
}

its give error
[emerg]: unknown directive “drizzled_server” in
/etc/nginx/nginx.conf:133
can any one help me to configure HttpDrizzleModule with nginx`

Posted at Nginx Forum:

Hi,

that ‘unknown directive’ says it all. You need to check your backend
definition. The drizzled_server key simply does not exist. See the
README of this module:

That directive is called ‘drizzle_server’. Should be working good good
once you’ve corrected that typo.

Regards,
Chris

2012/6/6 rohit [email protected]: