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

Re: Как обработать редирект и проксировать результат приложению?

2020-06-29 Thread Александр Карабанов
Не проверял. GET работает, как ожидается. Для решения моей проблемы этого достаточно. пн, 29 июн. 2020 г. в 10:48, Илья Шипицин : > я примерно такое имел в виду. > > а вот расскажите, как будет работать, если на POST запрос будет 301, вы в > @handle_redirect отправите тоже POST ? > > пн, 29

[nginx] SSL: fixed unexpected certificate requests (ticket #2008).

2020-06-29 Thread Maxim Dounin
details: https://hg.nginx.org/nginx/rev/3dcb1aba894a branches: changeset: 7672:3dcb1aba894a user: Maxim Dounin date: Mon Jun 29 17:15:51 2020 +0300 description: SSL: fixed unexpected certificate requests (ticket #2008). Using SSL_CTX_set_verify(SSL_VERIFY_PEER) implies that OpenSSL

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

Re: proxy_ssl_server_name

2020-06-29 Thread Maxim Dounin
Hello! On Sun, Jun 28, 2020 at 09:46:14PM +0300, Gena Makhomed wrote: > Максим, а зачем по-умолчанию сделано proxy_ssl_server_name off; ? На то есть две причины: 1. Исторически nginx не умел SNI в соединениях с бэкендами. Когда поддержка была добавлена - поведение по умолчанию было оставлено

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

Re: ssl_protocols

2020-06-29 Thread Maxim Dounin
Hello! On Sun, Jun 28, 2020 at 09:26:46PM +0300, Gena Makhomed wrote: > On 25.06.2020 22:27, Maxim Dounin wrote: > > > А не разрешить ли TLSv1.3 по умолчанию. Сейчас для этого как > > минимум один блокер - в TLSv1.3 не настраиваются шифры и в > > результате сломаются конфиги с "ssl_ciphers

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

Re: Как обработать редирект и проксировать результат приложению?

2020-06-29 Thread Илья Шипицин
я примерно такое имел в виду. а вот расскажите, как будет работать, если на POST запрос будет 301, вы в @handle_redirect отправите тоже POST ? пн, 29 июн. 2020 г. в 12:03, Александр Карабанов : > Вот такое решение нашёл: > >

Re: Как обработать редирект и проксировать результат приложению?

2020-06-29 Thread Александр Карабанов
Вот такое решение нашёл: https://serverfault.com/questions/423265/how-to-follow-http-redirects-inside-nginx server { ... location / { proxy_pass http://backend; # You may need to uncomment the following line if your redirects are relative, e.g. /foo/bar