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 wrote: > 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:

rewrite with regex to use proxy_pass

2017-06-29 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&s2=&p=home::index&x2=[box]&apvr=[5.0]&idclient=&na=&ref= location ~ ^/folder1/folder2/ {

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 ap

Nginx can not use more than 1024 log?

2016-06-28 Thread Alexandre
t 3 May 2016) --with-cc-opt='-g -O2 -fstack-protector-strong -Wformat -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-z,relro -Wl,--as-needed' --- Would you have a solution? Thank you. Regards, Alexandre ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

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
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 ca

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

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

2016-01-27 Thread Alexandre
Hello, thank you I'll test. It is not possible to test the nginx upstream directly ? Thank you Alexandre On 27/01/16 20:40, Yichun Zhang (agentzh) wrote: Hello! On Wed, Jan 27, 2016 at 9:10 AM, Alexandre wrote: However I wish to monitor the status of the backend. How can I do ?

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