RE: Puzzling Log messages talking to php-fpm

2020-12-01 Thread Reinis Rozitis
> We have a server (real name substituted by mapserver.example.com) running > nginx 1.18.0 on CentOS 7 with php-fpm listening on port 9001. Does the fpm listen also on ipv6 interface? Check: ss -ntlr | grep 9001 If you see [::]:9001 Since you have fastcgi_pass localhost:9001; I assume at some

Puzzling Log messages talking to php-fpm

2020-12-01 Thread Nikolaos Milas
Hello, To start with, I am not an nginx geek, so please be patient with me! We have a server (real name substituted by mapserver.example.com) running nginx 1.18.0 on CentOS 7 with php-fpm listening on port 9001. The server is only serving a maps application. The application is mainly called

RE: nginx internals: processors versus network

2020-12-01 Thread Reinis Rozitis
> I have a question about nginx internals. How does nginx ensure high > throughput? I understand that nginx uses many parallel connections by using > epoll. But what about processors? Is connection handling spread amongst > multiple processors to handle any processing bottleneck? If necessary y

nginx internals: processors versus network

2020-12-01 Thread James Read
Hi, I have a question about nginx internals. How does nginx ensure high throughput? I understand that nginx uses many parallel connections by using epoll. But what about processors? Is connection handling spread amongst multiple processors to handle any processing bottleneck? The reason I ask is

Re: HTTP header size setting

2020-12-01 Thread Driver
I found out that I need to increase http2_max_field_size value. Posted at Nginx Forum: https://forum.nginx.org/read.php?2,290117,290120#msg-290120 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: nginx 1.18.0 implicitly enables TLS 1.3 (with only "ssl_protocols TLSv1.2; " in nginx.conf config)

2020-12-01 Thread Sergey Kandaurov
> On 1 Dec 2020, at 11:11, Andreas Bartelt wrote: > > On 11/30/20 11:39 PM, Maxim Dounin wrote: >> Hello! >> On Mon, Nov 30, 2020 at 06:41:18PM +0100, Andreas Bartelt wrote: >>> On 11/30/20 4:07 PM, Maxim Dounin wrote: Hello! On Sun, Nov 29, 2020 at 04:01:07PM +0100, ng...@barte

Re: nginx 1.18.0 implicitly enables TLS 1.3 (with only "ssl_protocols TLSv1.2; " in nginx.conf config)

2020-12-01 Thread Andreas Bartelt
On 11/30/20 11:39 PM, Maxim Dounin wrote: Hello! On Mon, Nov 30, 2020 at 06:41:18PM +0100, Andreas Bartelt wrote: On 11/30/20 4:07 PM, Maxim Dounin wrote: Hello! On Sun, Nov 29, 2020 at 04:01:07PM +0100, ng...@bartelt.name wrote: I've noticed that nginx 1.18.0 always enables TLS 1.3 even i

HTTP header size setting

2020-12-01 Thread Driver
Hello, What is the comparable setting to tomcat maxHttpHeaderSize ? I have to set this to 20KB on nginx proxy. I tried below but they were not working: client_header_buffer_size 20k; large_client_header_buffers 4 20k; proxy_buffers 8 20k; proxy_buffer_size 20k; Posted at Nginx Forum: https://fo