ngx_mail: untagged IMAP responses

2023-03-11 Thread Anton Yuzhaninov via nginx
it has not been addressed I don't expect it to be supported by nginx out of the box but may be there are 3rd party patches for this I can try? -- Best Regards, Anton Yuzhaninov ___ nginx mailing list nginx@nginx.org https://mailman.nginx.org/m

Re: Inconsistent variable caching (in SSI or in nginScript)

2017-10-10 Thread Anton Yuzhaninov
On 10/09/17 22:15, Anton Yuzhaninov wrote: > > I've encountered a bug (or unexpected and not well documented feature) > in SSI (ngx_http_ssi_module) or in nginScript (ngx_http_js_module). > > If a variable, which set via js_set is used only in SSI it is not cached >

Re: NGINX IMAP proxy and outlook ios/android app

2017-10-09 Thread Anton Yuzhaninov
On 10/09/17 09:45, bobykus wrote: > Looks like since mid of Sept we can not use nginx as an imap(s) proxy for > mobile outlook apps (both IOS and Android ). > SSL handshake is just dropping like Try to setup a test https site on the same nginx with the same ssl setting and access this site using

Re: duplicate upstream server marked as down

2017-10-09 Thread Anton Yuzhaninov
On 10/03/17 14:00, halfpastjohn wrote: > Can i have two, identical, server hostnames in an upstream, with one of them > marked as "down"? Like this: > > resolver 10.0.0.8; > > upstream backend { > server backend.example.com down resolve; > server backend.example.com/api/v2/; > } server in

Inconsistent variable caching (in SSI or in nginScript)

2017-10-09 Thread Anton Yuzhaninov
er directive is commented out I see two different random numbers (and this change is not expected). nginx version: nginx/1.12.1 nginx-module-njs 0.1.10 -- Best Regards, Anton Yuzhaninov ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: v1.9.5: compiler warning

2015-09-23 Thread Anton Yuzhaninov
On 09/23/15 18:31, Sergey Kandaurov wrote: Looks like you are building nginx with zlib library sources specified manually with —-with-zlib option, and that’s an issue in zlib, not nginx. If such a warning bothers you, you may want to look at this change: https://github.com/madler/zlib/commit/e54e

Re: SSL Ciphers

2015-03-19 Thread Anton Yuzhaninov
On 03/19/15 15:29, Дилян Палаузов wrote: Can you tell me, why doesn't nginx support all ciphers printed by openssl cipher using the same cipher-string? Some cipher suites depend on certificate type. E. g. for ECDHE-ECDSA-* you need ECC-based certificate. __

Re: nginx as front end cache for WMS

2014-03-04 Thread Anton Yuzhaninov
On 03/04/14 02:26, tt5430 wrote: How do I know if nginx caches my WMS responses? It will be useful to log $upstream_cache_status and $upstream_response_time in access_log. Also check, that geoserver return code is 200 (and not redirect to some other URI). _

Re: virtual or physical?

2014-02-21 Thread Anton Yuzhaninov
On 02/21/14 11:28, Marc-Olivier Meunier wrote: If I have one host, am I going to get better performances if I run only one nginx on the physical host, or would it be more beneficial to run 4 virtual machines each running a different nginx? With nginx on physical host you will get better perform

Re: acess log over nfs hanging

2014-02-11 Thread Anton Yuzhaninov
On 02/07/14 20:28, Jader H. Silva wrote: It seems that when some processes are running in the nfs server, the share won't allow writing for some time and I noticed all nginx workers in status D and not processing requests. I general it is a bad idea to write logs over NFS instead local HDD. If

Re: Optimizing NGINX TLS Time To First Byte (TTTFB)

2013-12-19 Thread Anton Yuzhaninov
On 12/19/13 04:50, Alex wrote: I remember reading (I believe it was in your (excellent) book! ;)) that upon packet loss, the full TLS record has to be retransmitted. Not cool if the TLS record is large and fragmented. So that's indeed a good reason to keep TLS records small and preferably within

Re: nginx-1.5.8

2013-12-19 Thread Anton Yuzhaninov
On 12/19/13 13:59, athalas wrote: Where would we find documentation on the "fastopen" parameter? "fastopen" parameter set TCP_FASTOPEN socket option on Linux: https://en.wikipedia.org/wiki/TCP_Fast_Open ___ nginx mailing list nginx@nginx.org http://m

Re: [SSL] Initial Connection takes very long time

2013-12-09 Thread Anton Yuzhaninov
On 12/09/13 12:51, Neddy wrote: This is my test result: http://www.webpagetest.org/result/131209_M2_BYF/1/details/ you can see it took more than 9 seconds for initiation Try to connect from local server, e. g. server_with_nginx> openssl s_client -connect 127.0.0.1:443 If local connection is

Re: [SSL] Initial Connection takes very long time

2013-12-09 Thread Anton Yuzhaninov
On 12/09/13 12:51, Neddy wrote: This is my test result: http://www.webpagetest.org/result/131209_M2_BYF/1/details/ you can see it took more than 9 seconds for initiation At least one issue with https://instavn.com - there is no intermediate certificates provided. http://nginx.org/r/ssl_cert

Re: Force ppt(x) and pps(x) to be downloaded instead of being served as plain text

2013-12-06 Thread Anton Yuzhaninov
On 12/06/13 15:09, Jonathan Matthews wrote: >How can I have them always as a download? Probably by setting the appropriate MIME type up: http://wiki.nginx.org/HttpCoreModule#types Or by adding (in location or server) default_type application/octet-stream; http://nginx.org/r/default_type ___

Re: Mainline Ubuntu Packages

2013-05-07 Thread Anton Yuzhaninov
On 05/07/13 14:50, Christian Bönning wrote: The issue in question currently is which parameters for ./configure are used to build those packages? run nginx -V ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: location vs. rewite

2013-04-01 Thread Anton Yuzhaninov
On 04/01/13 16:51, etrader wrote: I want to server favicon from a different place rather than the root folder. As I explored I have two options 1. location = /favicon.ico { alias /var/www/media/images/favicon.X.ico; } It is working option. 2. rewrite ^/favicon.ico /var/www/media/images/favi

Re: *** glibc detected *** nginx: master process /data/nginx/sbin/nginx -c /data/nginx/conf/nginx.conf: free(): invalid pointer: 0x00000000005b9980 ***

2013-02-19 Thread Anton Yuzhaninov
On 02/19/13 16:26, disney2002 wrote: I got a Serious problem,here is the nginx config: nginx version: nginx/0.8.55 0.8.55 is very old, try to upgrade to latest stable - 1.2.7 -- Anton Yuzhaninov ___ nginx mailing list nginx@nginx.org http