Re: 1.4.1 SPDY error FIXME: chain too big in spdy filter
BTW, I usefastcgi_buffers 16 2048k;fastcgi_buffer_size 2048k;fastcgi_busy_buffers_size 2048k;So I am under the 16MB, unless you are applying it *16?
View Articlenginx 1.4.1 + nginx-upload-module - не собирается
Приветствую !В nginx 1.4.1 в экстра-сборке под Debian обнаружил отсутствие по-умолчанию nginx-upload-module. Добавил. Пробую собирать - падает с ошибкой/nginx-upload-module/ngx_http_upload_module.c: In...
View ArticleNginx unable to get certificate CRL
I'm using nginx(1.1.9) for serving debian packages on https by using client certificate feature.listen 443 ssl;...ssl_certificate /etc/ssl/ca.chain.crt; ssl_certificate_key /etc/ssl/server.key;...
View ArticleRe: Caching any point to go in ram ?
Hello Maxim,Maybe, but it seems normal since I looked all the major websites having the same issue.So if everybody has this issue, it is not an issue anymore per se.I tried this configuration...
View ArticleRe: Caching any point to go in ram ?
Maybe I miss something :Is the proxy useful if I intend to cache the images from another of my servers ?Eg :files : www.example.comimages : www.example2.comI would like www.example.com to cache the...
View ArticleRe: два правила работают по отделности но не вместе
все проблемы решились простым способомКоличество проблем потом полезло реально болшое, было принято решение создать отдельно для nginx две папки алиасов /var/nginx/www$host/var/nginx/$hostсобственно...
View Articleaccess_log и $host
Доброго времяни суток, коллеги.Нужно чтоб отработала переменая $host, тут она отдается как просто текст.error_log /var/log/nginx/$host/nginx_error.log error;вывод:...
View ArticleProxy before apache, always MISS
Hello everyone,I use NGINX as a proxy before apache - this part works fine.Later, I decided to cache all generated images from uri:bin/* and put them into cache, so I don't get these images generated...
View ArticleRe: Proxy before apache, always MISS
Solved it by:location ^~ /bin/ {expires 30d;add_header X-Cache-Status $upstream_cache_status;proxy_pass http://{DOMAIN};proxy_ignore_headers X-Accel-Expires Expires Cache-Control;proxy_cache...
View ArticleRe: leaky bucket limit_req
Добрый день, Игорь.У меня есть вопрос по этой формуле: excess = lr->excess - ctx->rate * ngx_abs(ms) / 1000 + 1000;Получается, что если в течение 1мс пришли 2 запроса, то второй будет дропнут,...
View ArticleRe: error 504, gateway timeout nginx,
Hey suttya, thanks for advice.I tried but it still doesn't work.request_slowlog_timeout = 0s --> was commented out, i changed it to 0s (which is the default value for off, i guess that's the same as...
View ArticleLUA fails to connect to unix domain socket under nginx
connect() fails with error "(91: Protocol wrong type for socket)"i use nginx 1.4.1 with lua module version 0.82 and lua on system ver 5.1.4, on CentOS linux version 6.3LUA code in...
View ArticleRe: Fwd: WEBDAV: accomodate MKCOL for somewhat broken clients
Hello!On Thu, Jun 13, 2013 at 12:15:54PM +0400, Vladimir Dronnikov wrote:> Hello!>> I wonder if> https://github.com/dvv/nginx/commit/3a8cdadea196a594fd1940be02818f51d1b1769fis> feasible?...
View Article[nginx] Valgrind: another complaint about uninitialized bytes.
details: http://hg.nginx.org/nginx/rev/982678c5c270branches:changeset: 5252:982678c5c270user: Tatsuhiko Kubo <cubicdaiya@gmail.com>date: Wed Jun 12 00:41:24 2013 +0900description:Valgrind:...
View ArticleRe: Fwd: WEBDAV: accomodate MKCOL for somewhat broken clients
You should be able to just duplicate the MKCOL line in the second map forDELETE, but since MOVE also requires a trailing / on the Destinationheader, I can't think of a way around it without something...
View ArticleRe: Adding per user traffic stats using iptables
Hello!On Mon, Jun 17, 2013 at 10:42:21PM +0800, Zorceta Moshak wrote:> Hi,> I'm trying to let iptables record different users' traffic.> Planned to setuid() before worker actually sends out...
View ArticleRe: Fwd: WEBDAV: accomodate MKCOL for somewhat broken clients
Any chance to have this trailing slash controlled by an option?Or would you people mind to share a chunk of nginx config which wouldappend that slash?TIAOn Thu, Jun 13, 2013 at 4:21 PM, Maxim Dounin...
View Article[nginx] SPDY: fixed code style, no functional changes.
details: http://hg.nginx.org/nginx/rev/4ef49081ef4cbranches:changeset: 5251:4ef49081ef4cuser: Valentin Bartenev <vbart@nginx.com>date: Thu Jun 13 16:28:42 2013 +0400description:SPDY: fixed code...
View ArticleAdding per user traffic stats using iptables
Hi,I'm trying to let iptables record different users' traffic.Planned to setuid() before worker actually sends out data.Read through modules and filter chain in source codes, still can't figureout...
View ArticleRe: Fwd: WEBDAV: accomodate MKCOL for somewhat broken clients
This worked in a quick test for me:map $uri $missing_slash {default 1;~/$ 0;}map $request_method $add_slash {default 0;MKCOL $missing_slash;}server {location / {dav_methods MKCOL;if ($add_slash) {...
View Article