Hi,
On 29.06.20 21:50, siva.pannier wrote:
Hi,
I am new to Nginx and I could validate some of the reverse proxy scenarios
in Windows and Ubuntu machine successfully. However I am facing challenges
on validating them on Openshift cluster platform.
I am new to Docker/Kubernetes/Openshift. I am a
Hi,
I am new to Nginx and I could validate some of the reverse proxy scenarios
in Windows and Ubuntu machine successfully. However I am facing challenges
on validating them on Openshift cluster platform.
I am new to Docker/Kubernetes/Openshift. I am able to deploy the below Nginx
image in Openshi
One place you have $mylimit and another is $my_limit (with the underscore).
___
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Dear community member,
As you probably know, we’ve run an annual user survey
for NGINX the past six years. Your feedback directly
impacts the future roadmap and vision for nginx, nginx unit,
and nginx plus. We truly value your thoughts and opinions,
and look forward to hearing from you each year.
I have nginx rate-limiting working when using the following
limit_req_zone $binary_remote_addr zone=mylimit:20m rate=50r/m;
I now want to apply it to certain IPs so i've changed it to
geo $limit {
default 1;
1.2.3.4/32 0;
}
map $limit $mylimit {
0 "";
1 $binary_remote_