no events CREATE/UPDATE after ingress is created

2020-04-19 Thread Alexandre Ellert
Hi, I have a strange behaviour on a kubernetes cluster where nginx ingress controller is deployed and managed by gitlab. When I create an Ingress object in a namespace, I notice that nginx.conf in the controller pod is not updated. Also I can't see any events when I do a 'kubectl describe ingress

Re: rewrite with regex to use proxy_pass

2017-06-30 Thread Alexandre
Do you have solutions for my problem ? Thank you very much. On Fri, 30 Jun 2017 08:18:50 +0200 Alexandre <in...@opendoc.net> wrote: > Hello, > > I have a question, I wish I could parser a url and retrieve fields to > inject them to another server. > > However, I

rewrite with regex to use proxy_pass

2017-06-30 Thread Alexandre
Hello, I have a question, I wish I could parser a url and retrieve fields to inject them to another server. However, I can not. Here is my test: URL : http://mywebsite.net/folder1/folder2/hit.php?s=1==home::index=[box]=[5.0]=== location ~ ^/folder1/folder2/ { rewrite

Re: Nginx can not use more than 1024 log?

2016-06-29 Thread Alexandre
possible to create the nginx.service file during installation of nginx? Thank you the nginx community. Regards, Alexandre. On 29/06/2016 12:21, Sernate wrote: Hi, What does a 'cat /proc/PID/limits' (replace PID with the NGINX PID number) show you ? The limits.conf file does not apply to syst

Re: load balancer on nginx : how to monitoring backend ?

2016-01-28 Thread Alexandre
Hello On 28/01/16 22:26, Aleksandar Lazic wrote: Hi. Am 28-01-2016 08:36, schrieb Alexandre: Hello, On 28/01/16 08:27, Maxim Konovalov wrote: On 1/28/16 1:32 AM, Alexandre wrote: Monitoring of backend seems to be possible with NGINX PLUS. Can you confirm ? http://nginx.org/en/docs/http

Re: load balancer on nginx : how to monitoring backend ?

2016-01-27 Thread Alexandre
Monitoring of backend seems to be possible with NGINX PLUS. Can you confirm ? http://nginx.org/en/docs/http/ngx_http_upstream_module.html https://www.nginx.com/products/ Thank you Alexande. On 27/01/16 22:37, Alexandre wrote: Hello, thank you I'll test. It is not possible to test the nginx

Re: load balancer on nginx : how to monitoring backend ?

2016-01-27 Thread Alexandre
Hello, On 28/01/16 08:27, Maxim Konovalov wrote: On 1/28/16 1:32 AM, Alexandre wrote: Monitoring of backend seems to be possible with NGINX PLUS. Can you confirm ? http://nginx.org/en/docs/http/ngx_http_upstream_module.html https://www.nginx.com/products/ Yes, that's right. OK, I can

load balancer on nginx : how to monitoring backend ?

2016-01-27 Thread Alexandre
Hello everyone, I use nginx 1.8.0 on debian (official nginx package with nginx repo) I created a reverse proxy SSL cluster with load balancing. Everything works fine. --- upstream myapp { server srv1; server srv2; } --- --- location ~ ^/myapp { rewrite ^/(.*) /$1