Re: Calculating requests per second, per IP address

2024-01-01 Thread jeremy ardley via nginx
On 1/1/24 18:57, J Carter wrote: Other than log aggregators, writing a script (python, perl, bash) is likely the fastest approach. Consider sharing it if you do, I'm sure others will find it useful. -- An alternative option is to put haproxy as a front end to nginx. haproxy has very configurabl

Re: logging in mail {} stanza and STARTTLS error

2022-03-16 Thread Jeremy Ardley
On 17/3/22 10:02 am, Sergey A. Osokin wrote: References: [1] https://mailman.nginx.org/pipermail/nginx/2018-January/055490.html [2] https://nginx.org/en/docs/debugging_log.html Hello Sergey, Coincidentally I have made a small progress on resolving the problems and discovered at least a part

logging in mail {} stanza and STARTTLS error

2022-03-16 Thread Jeremy Ardley
Hi, I'm attempting to implement an IMAP proxy using ngx_mail module. How do I enable logging inside a mail {} stanza, or indeed anywhere other than an http {} stanza which doesn't seem to log any mail {} related traffic. Secondly, the reason I want to log activity is because the mail module

Re: Can't disable TLS 1.0

2018-11-17 Thread Jeremy Ardley
Problem resolved. Letsencrypt was in use and it overrode the nginx.conf allowed protocols in file /etc/letsencrypt/options-ssl-nginx.conf Posted at Nginx Forum: https://forum.nginx.org/read.php?2,282020,282030#msg-282030 ___ nginx mailing list nginx

Can't disable TLS 1.0

2018-11-16 Thread Jeremy Ardley
I am setting up web servers for best practice TLS. The issue is TLS 1.0 which is deprecated I want to remove it from the available protocols and have done the usual ## # SSL Settings ## ssl_protocols TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE ssl_pref