Php script is getting executed multiple times on nginx as a proxy server

2021-06-23 Thread Adrian Bulgariu
Hello, i have nginx as a proxy server. When i run a php script that takes allot of time to import (some product imports) i see in the log file that starts on a web child and after some time the script it is called by another child fom my file log: [ ip of the child ] [iteration of product nr

Re: loading ssl_certificate from a variable

2021-06-23 Thread daveb
Hi Sergey, Thanks for your reply. I tried with and without newlines, but as Sergey Kandaurov noted, the variable was empty in both cases,,so the variable not being set before handshake is the likely cause. Dave Posted at Nginx Forum: https://forum.nginx.org/read.php?2,291902,291909#msg-291909

Re: loading ssl_certificate from a variable

2021-06-23 Thread daveb
Hi Sergey, Thanks, that makes sense. I'll try your suggestions. Dave Posted at Nginx Forum: https://forum.nginx.org/read.php?2,291902,291908#msg-291908 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Fwd: help websockets

2021-06-23 Thread Francis Daly
On Wed, Jun 23, 2021 at 05:10:49PM +0100, Alison wrote: Hi there, > Does anyone have any suggestions about the below ? I don't have an answer for your question; but I will note that you seem to be asking about an nginx ingress controller for kubernetes; and there is more than one of those. http

Re: help websockets

2021-06-23 Thread zak preedy
no On Wed, 23 Jun 2021 at 17:11, Alison wrote: > Hi, > > Does anyone have any suggestions about the below ? > > Thank you very much, > > Alison > > > -- Forwarded message - > From: Alison > Date: Fri, 18 Jun 2021, 15:06 > Subject: help websockets > To: > > > Hi, > > I'm using t

Fwd: help websockets

2021-06-23 Thread Alison
Hi, Does anyone have any suggestions about the below ? Thank you very much, Alison -- Forwarded message - From: Alison Date: Fri, 18 Jun 2021, 15:06 Subject: help websockets To: Hi, I'm using the following ingress in my jupyterhub application to expose the application exter

Re: loading ssl_certificate from a variable

2021-06-23 Thread Sergey A. Osokin
Hi Dave, hope you're doing well these days. On Wed, Jun 23, 2021 at 09:29:46AM -0400, daveb wrote: > Hello, > > I'm trying to load the cert/key from a variable, based on the documentation > here: > https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_certificate > Using this configuration

Re: loading ssl_certificate from a variable

2021-06-23 Thread Sergey Kandaurov
> On 23 Jun 2021, at 16:29, daveb wrote: > > Hello, > > I'm trying to load the cert/key from a variable, based on the documentation > here: > > https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_certificate > > Using this configuration: > > > server { >listen 19099 s

loading ssl_certificate from a variable

2021-06-23 Thread daveb
Hello, I'm trying to load the cert/key from a variable, based on the documentation here: https://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl_certificate Using this configuration: server { listen 19099 ssl; set $mycert "-BEGIN CERTIFICATE- ..."; s