<HTML><BODY>
<br><br><br><br>




 -------- Оригинално писмо --------
<br>От: Francis Daly francis@daoine.org
<br>Относно: Re: nginx does't serve compressed static .html files. is it a bug?
<br>До: nginx@nginx.org
<br>Изпратено на: 05.02.2015 23:14
<br><br>On Thu, Feb 05, 2015 at 10:28:33PM +0200, peter petrov wrote:<br>
<br>
Hi there,<br>
<br>
>  Francis Daly I did what you suggested but it doesn't work. Access.log says both times with --compressed or without it "200 162" for the nginx welcome screen.It is very weird.<br>
<br>
It works for me:<br>
<br>
# ls -l html/index.html*<br>
-rw-r--r-- 1 root root 612 Jul 23  2013 html/index.html<br>
-rw-r--r-- 1 root root 392 Feb  5 21:06 html/index.html.gz<br>
<br>
# cat conf/nginx.conf<br>
events {}<br>
http {<br>
  gzip_static on;<br>
  server {<br>
    listen 8080;<br>
  }<br>
}<br>
<br>
# curl -i  <a href="http://localhost:8080/" target="_blank">http://localhost:8080/</a><br>
[http 200, I see the content]<br>
<br>
# curl -i --compressed <a href="http://localhost:8080/" target="_blank">http://localhost:8080/</a><br>
[http 200, I see the content]<br>
<br>
# tail -n 2 logs/access.log<br>
127.0.0.1 - - [05/Feb/2015:21:08:51 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.15.5 (i386-redhat-linux-gnu) libcurl/7.15.5 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5"<br>
127.0.0.1 - - [05/Feb/2015:21:08:57 +0000] "GET / HTTP/1.1" 200 392 "-" "curl/7.15.5 (i386-redhat-linux-gnu) libcurl/7.15.5 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5"<br>
<br>
<br>
Repeat the test with exactly this configuration to see if it fails for you.<br>
<br>
Or show exactly what you are doing so someone can see if it work for them.<br>
<br>
Good luck with it,<br>
<br>
        <br>
Francis Daly        <a href="javascript: internSendMess('francis@daoine.org')">francis@daoine.org</a><br><br><br>Hi ,<br> <br>Thank you for your efforts and patience. Things are getting better here and I almost achieve your result<br>Nginx
 serves static files now., but writes smth above "Welcome to nginx!" 
index.html 00006440000... some numbers and finishes with Oustar 
rootroot.<br>1. sudo tar czvf index.html.gz index.html<br>2.sudo curl -i --compressed  http://localhost:8080/<br>   or sudo curl -i http://localhost:8080/    they both produce the same result index.html000064400000..... <br>3. sudo tail -n 2 logs/access.log makes the same result "200 483"  480B was the best I could achieve<br>using both tar and gzip -9 how did manage to get 392B out of 612B?<br><br>
<br>
_______________________________________________<br>
nginx mailing list<br>
<a href="javascript: internSendMess('nginx@nginx.org')">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a><br>
</BODY></HTML>