Re: webdav сервер на nginx

2015-05-08 Thread Иван Мишин
В nginx отсутствует поддержка методов OPTIONS и PROPFIND, необходимых для полноценной работы протокола. Тогда понятно, как-то я упустил из виду что спец клиенты webdav начинают свой разговор с сервером с помощью метода OPTIONS . 8 мая 2015 г., 16:01 пользователь Vadim A. Misbakh-Soloviov

Re: Nginx gets halt on 15K connections !!

2015-05-08 Thread Valentin V. Bartenev
On Friday 08 May 2015 18:15:59 shahzaib shahzaib wrote: Hi Valentine, What's really important is the connections that nginx cannot close. The active ones. How long the connection is active depends on the request processing time. Thanks for pointing that to me. Nginx serving around

Re: Static files bad loading time

2015-05-08 Thread shahzaib shahzaib
Right, thanks. Btw, we used another nginx official doc for optimization and the most effective optimization parameter was tweaking the backlog from default 512 to 4096 in nginx listen directive. http://nginx.com/blog/tuning-nginx/ Regards. Shahzaib On Fri, May 8, 2015 at 6:18 PM, Valentin V.

Re: Static files bad loading time

2015-05-08 Thread Valentin V. Bartenev
On Friday 08 May 2015 18:05:51 shahzaib shahzaib wrote: Well, reducing keepalive_timeout and increasing the values of worker_connections resolved our issue. Following is the reference we used to tweak nginx config :

Re: long wait configtest

2015-05-08 Thread zilog80
can i bypass the resolver test in configtest? Posted at Nginx Forum: http://forum.nginx.org/read.php?2,258721,258753#msg-258753 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: long wait configtest

2015-05-08 Thread Valentin V. Bartenev
On Friday 08 May 2015 12:01:47 zilog80 wrote: can i bypass the resolver test in configtest? No. wbr, Valentin V. Bartenev ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Fwd: Re: comparing two variables

2015-05-08 Thread TPFreak
same issue, need to know how! Posted at Nginx Forum: http://forum.nginx.org/read.php?2,206345,258760#msg-258760 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: webdav сервер на nginx

2015-05-08 Thread Vadim A. Misbakh-Soloviov
В письме от Пт, 8 мая 2015 15:38:18 пользователь Vadim Lazovskiy написал: https://github.com/arut/nginx-dav-ext-module кстати, довольно забавно, что `arut` (Роман Арутюнян, если я правильно транслитировал фамилию) работает в NginX Inc. // т.е. модуль имел все шансы оказаться в стандартной

Re: Nginx gets halt on 15K connections !!

2015-05-08 Thread Valentin V. Bartenev
On Thursday 07 May 2015 18:38:23 shahzaib shahzaib wrote: Hi, It looks like we made the false calculation based on entertaining concurrent connections per seconds and worker_connections limit was set to be very low. I've increased this limit to 16000 and issue looks to be fixed. Here's

Re: Static files bad loading time

2015-05-08 Thread shahzaib shahzaib
Well, reducing keepalive_timeout and increasing the values of worker_connections resolved our issue. Following is the reference we used to tweak nginx config : http://blog.martinfjordvald.com/2011/04/optimizing-nginx-for-high-traffic-loads/ Thanks. Shahzaib On Fri, May 8, 2015 at 4:42 PM,

Re: webdav сервер на nginx

2015-05-08 Thread Vadim A. Misbakh-Soloviov
В письме от Пт, 8 мая 2015 15:10:22 пользователь Иван Мишин написал: Подскажите, что я делаю не так? Например, говорите какие сообщения вам даёт мало кому известный клиентский софт (в рассылке, где заведомо нет его разработчиков и никто не может соотнести сообщение с местом в коде когда оно

Re: webdav сервер на nginx

2015-05-08 Thread Vadim Lazovskiy
Здравствуйте. В nginx отсутствует поддержка методов OPTIONS и PROPFIND, необходимых для полноценной работы протокола. Есть модуль dav_ext позволяющий осуществить задуманное: https://github.com/arut/nginx-dav-ext-module 8 мая 2015 г., 15:10 пользователь Иван Мишин simplebo...@gmail.com написал:

Re: How to enable OCSP stapling when default server is self-signed?

2015-05-08 Thread Maxim Dounin
Hello! On Thu, May 07, 2015 at 02:28:12PM -0400, 173279834462 wrote: [...] It turns out that the problem is security.ssl.enable_ocsp_stapling, which is true by default. If I disable it, then FF loads the web sites. If I re-enable it, then FF complains again: Secure Connection Failed

Re: Static files bad loading time

2015-05-08 Thread Valentin V. Bartenev
On Thursday 07 May 2015 23:27:44 shahzaib shahzaib wrote: Hi, There are some tweaks required to nginx configurations. If the same image which usually takes second to response can takes upto 10-20 seconds to load, the wide guess would be exceeding concurrent connections at peak traffic.

webdav сервер на nginx

2015-05-08 Thread Иван Мишин
Поднял webdav сервер на nginx со следующим конфигом server { listen 80; server_name x.x.x.x; location / { autoindex on; root /etc/nginx/include/webdav;

Problems with nginx reverse proxy...

2015-05-08 Thread BRM
I have a python application hosted under gunicorn that is expected to have long lived requests.It works just fine if we hit the application directly; however, we want to have nginx in front of it and are having issues with 504 errors. I found some settings on-line that seem to be what we want to