Re: nginx: worker process is shutting down

2015-10-22 Thread Christos Chatzaras
Thank you for the help. I found that the problem is caused by Http Auth Digest: https://github.com/samizdatco/nginx-http-auth-digest but I don't think I will get any help from the developer as it's not maintained any more. Last commit was 4 years ago.

Re: nginx: worker process is shutting down

2015-10-22 Thread Christos Chatzaras
I think I found a patch for this: https://github.com/jrkettle/nginx-http-auth-digest/commit/6846a2a94b5497ec999a826618552717b3853bb9 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

nginx: worker process is shutting down

2015-10-22 Thread Christos Chatzaras
Every time I do "nginx -s reload" I see a process: nginx: worker process is shutting down This process never stops even after a long time. Any idea what cause this issue? >From truss (similar to strace): kevent(13,{},0,{},512,{0.60200 })= 0 (0x0)

disable .php files uploads using php (php-fpm)

2016-08-28 Thread Christos Chatzaras
Is any way to get the body of a php post upload to match using regex the filename of a php upload? I want to block file uploads with .php extension. I found that I can do it with nasxi but I want to see if I can avoid it. ___ nginx mailing list

performance: static or dynamic modules

2017-05-27 Thread Christos Chatzaras
Is any performance difference between using static or dynamic modules? ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

empty user-agent and logs

2017-09-14 Thread Christos Chatzaras
curl -A "-" https://hostname/index.php and curl -A "" https://hostname/index.php are logged with: xxx.xxx.xxx.xxx - - [14/Sep/2017:22:47:09 +0300] "GET /index.php HTTP/1.1" 200 26039 "-" "-" There is not difference if there is an

Re: Throttle based on ETA time?

2018-11-17 Thread Christos Chatzaras
Any reason to have a 10 minute timeout? > On 17 Nov 2018, at 02:18, lem0nhead wrote: > > Hi! > I have a particular use-case for a nginx server which is used for > downloading big files (1-3 GBs). > Services call this server and start downloading, which usually takes ~2 > minutes @ 1gbps server

question about not found

2019-02-28 Thread Christos Chatzaras
If I try to visit an image that doesn't exist I get: "404 Not Found" If I add a location / { } then I get: "File not found" In both cases using curl -I http://www.example.com/image.png I get: HTTP/1.1 404 Not Found Server: nginx Date: Thu, 28 Feb 2019

Re: question about not found

2019-02-28 Thread Christos Chatzaras
> On 28 Feb 2019, at 15:06, Christos Chatzaras wrote: > > > >> On 28 Feb 2019, at 14:47, Christos Chatzaras wrote: >> >> If I try to visit an image that doesn't exist I get: >> >> "404 Not Found" >> >> If I add a locatio

Re: question about not found

2019-02-28 Thread Christos Chatzaras
> On 28 Feb 2019, at 14:47, Christos Chatzaras wrote: > > If I try to visit an image that doesn't exist I get: > > "404 Not Found" > > If I add a location / { } then I get: > > "File not found" > > In both cases using curl -I http:/

Re: question about not found

2019-02-28 Thread Christos Chatzaras
> On 28 Feb 2019, at 15:53, Maxim Dounin wrote: > > Hello! > > On Thu, Feb 28, 2019 at 03:30:22PM +0200, Christos Chatzaras wrote: > >>> On 28 Feb 2019, at 15:06, Christos Chatzaras wrote: >>> >>>> On 28 Feb 2019, at 14:47, Christos Chatzar

LiteSpeed 5.4 vs Nginx 1.16 benchmarks

2019-08-17 Thread Christos Chatzaras
Today I read this post: http://www.webhostingtalk.com/showthread.php?t=1775139 In their changelog ( https://www.litespeedtech.com/products/litespeed-web-server/release-log ) I see that they did changes related to HTTP/2. Any idea how they did it?

Re: Per IP bandwidth limit

2019-11-11 Thread Christos Chatzaras
> On 11 Nov 2019, at 15:09, Kostya Velychkovsky wrote: > > Hello, is it the correct way to limit download/upload speed per client IP, > at the same time ignore how many connections it opens and request rate > produced? > > I need just limit bandwidth for example 100 mbit/s per IP, and no

Double RAM usage after Nginx reload

2020-03-13 Thread Christos Chatzaras
Any idea why the "cache manager process" uses double RAM after the reload? System: nginx version: nginx/1.16.1 built with OpenSSL 1.1.1d-freebsd 10 Sep 2019 TLS SNI support enabled configure arguments: --prefix=/usr/local/etc/nginx --with-cc-opt='-I /usr/local/include' --with-ld-opt='-L

Question about limit_req_zone and max shared memory

2021-02-22 Thread Christos Chatzaras
I want to rate limit PHP requests with "client ip + vhost + same url" but on same servers sometimes I see: [alert] 78841#0: could not allocate node in limit_req zone "req_limit_per_ip_per_uri" which causes 429 errors in all domains. - FreeBSD/amd64 - # Max connections events {

Nginx mail proxy and TLS connection to the real mail server

2023-02-22 Thread Christos Chatzaras
Hello, I setup a Nginx mail proxy and I would like mail clients to connect to it without TLS and then the Nginx proxy to connect to the real mail server using TLS. Is this possible? Kind regards, Christos Chatzaras___ nginx mailing list

Re: Nginx mail proxy and TLS connection to the real mail server

2023-02-22 Thread Christos Chatzaras
> Short answer is no. The proxy_ssl_* family directives are available > for ngx_http_proxy and ngx_stream_proxy modules only. > > -- > Sergey A. Osokin Thank you for the reply. Finally I did it by combining the Nginx mail proxy with multiple Stunnels.

Bypass cache if PHPSESSID exists

2024-05-09 Thread Christos Chatzaras
Cache-Control: no-store, no-cache, must-revalidate Pragma: no-cache X-Cache: HIT Any idea what's wrong with my configuration? Kind regards, Christos Chatzaras ___ nginx mailing list nginx@nginx.org https://mailman.nginx.org/mailman/listinfo/nginx