-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Having trouble with storing information in memcached #7
Comments
Can you post the command used to store data ? Anyway, I think all proxy* directive should be in @fallback section. Regards, Bertrand On Mon, Nov 3, 2014 at 12:39 PM, cgurjar [email protected] wrote:
|
Hi
I am having trouble storing the values into memcache from nginx using the enhanced_memcached_module.
Help me in locating where I am going wrong. I looked at sample nginx.conf but what do you mean by real_host there?
nginx conf located below
user nginx;
worker_processes auto;
worker_rlimit_nofile 100000;
error_log logs/error.log
pid logs/nginx.pid;
events {
worker_connections 19000;
multi_accept on;
use epoll;
}
http {
#Comment below line during performance test because it serves only 3 request per second per IP
limit_req_zone $binary_remote_addr zone=perip:10m rate=3r/s;
#This is to limit Number of request to the upstream servers
#limit_req_zone $server_name zone=perserver:10m rate=5r/s;
}
The text was updated successfully, but these errors were encountered: