10 messages in ru.sysoev.nginxnginx fails to deliver certain files ...
FromSent OnAttachments
Joshua SierlesOct 29, 2007 2:54 am 
Igor SysoevOct 29, 2007 5:52 am 
Joshua SierlesOct 29, 2007 8:41 am 
Igor SysoevOct 29, 2007 8:54 am 
Igor SysoevOct 29, 2007 9:44 am.txt
Joshua SierlesOct 29, 2007 1:00 pm 
Agustin LopezOct 30, 2007 1:19 am 
Dave CheneyOct 30, 2007 1:42 am 
Alexander StauboOct 30, 2007 4:01 am 
Igor SysoevNov 8, 2007 6:39 am.Other
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:nginx fails to deliver certain files with gzip + SSLActions...
From:Joshua Sierles (jsie@public.gmane.org)
Date:Oct 29, 2007 2:54:16 am
List:ru.sysoev.nginx

I've noticed a problem with nginx 0.6.x running with gzip and SSL. Some static file delivery is cut off half way. This file always breaks, for example:

http://prototypejs.org/assets/2007/10/16/prototype.js

Here is the relevant nginx config:

gzip on; gzip_http_version 1.0; gzip_comp_level 2; gzip_proxied any; gzip_types text/plain text/html text/css application/x- javascript text/xml application/xml application/xml+rss text/javascript;

server {

root /Users/joshua/ssl-test; listen 443; ssl on; # path to your certificate ssl_certificate /Users/joshua/.ssl/server.crt; # path to your ssl key ssl_certificate_key /Users/joshua/.ssl/server.key; }