Re: Nginx as reverse proxy in Openshift Cluster

2020-06-29 Thread Aleksandar Lazic
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

Nginx as reverse proxy in Openshift Cluster

2020-06-29 Thread siva.pannier
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

Re: Problem with nginx rate limiting not working when using white listing

2020-06-29 Thread J.R.
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

Please take 10 minutes to give us your feedback

2020-06-29 Thread Igor Sysoev
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.

Problem with nginx rate limiting not working when using white listing

2020-06-29 Thread stu_cambridge
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_