nixCraft Linux Sys Admin Blog |
| How To Install Ubuntu Linux Under Windows Vista / XP With Wubi Posted: 26 Apr 2008 10:20 AM CDT You can install latest Ubuntu Linux 8.04 under Windows Vista / XP without creating a new parition with a new tool called Wubi. It is a Ubuntu installer for Windows users that will bring you into the Linux world with a single click. Wubi allows you to install and uninstall Ubuntu easily. This blog post covers basic installation:
Related Posts:
© How To Install Ubuntu Linux Under Windows Vista / XP With Wubi - nixCraft - Support nixCraft when you shop at amazon. Thanks! |
| mod_compress: Lighttpd Gzip Compression To Improve Download and Browsing Speed Posted: 26 Apr 2008 09:18 AM CDT Gzip is the most popular and effective compression method. Most modern web browser supports and accepts compressed data transfer. By gziping response time can reduced by 60-70% as compare to normal web page. The end result is faster web site experience for both dial up (they're not dead yet - I've dial up account for backup purpose) and boradband user. I've already written about speeding up Apache 2.x web access or downloads with mod_deflate. mod_comress for Lighttpd 1.4.xxLighttpd 1.4.xx supports gzip compression using mod_compress. This module can reduces the network load and can improve the overall throughput of the webserver. All major http-clients support compression by announcing it in the Accept-Encoding header as follows: Accept-Encoding: gzip, deflate If lighttpd sees this header in the request, it can compress the response using one of the methods listed by the client. The web server notifies the web client of this via the Content-Encoding header in the response: Content-Encoding: gzip This is used to negotiate the most suitable compression method. Lighttpd support deflate, gzip and bzip2. Configure mod_compressOpen your lighttpd.conf file: compress.filetype = ("text/plain","text/css", "text/xml", "text/javascript" ) Save and close the file. Create /tmp/lighttpdcompress/ file: How do I enable mod_compress per virtual host?Use conditional $HTTP host directive, for example turn on compression for theos.in: $HTTP["host"] =~ "theos\.in" { compress.cache-dir = "/var/www/cache/theos.in/" } PHP dynamic compressionOpen php.in file: Related Posts:
© mod_compress: Lighttpd Gzip Compression To Improve Download and Browsing Speed - nixCraft - Support nixCraft when you shop at amazon. Thanks! |
| LimitRequestBody: Apache Limiting User Upload File Size Posted: 26 Apr 2008 09:52 AM CDT I'd like to put limits on user file uploading size. How do I restricts the total size of the HTTP request body sent from the client under Apache 2 Web server? Answer to "LimitRequestBody: Apache Limiting User Upload File Size" Copyright © nixCraft. All Rights Reserved. Support nixCraft when you shop at amazon. Thanks! |
| You are subscribed to email updates from nixCraft Linux Sys Admin Blog To stop receiving these emails, you may unsubscribe now. | Email Delivery powered by FeedBurner |
| Inbox too full? | |
| If you prefer to unsubscribe via postal mail, write to: nixCraft Linux Sys Admin Blog, c/o FeedBurner, 20 W Kinzie, 9th Floor, Chicago IL USA 60610 | |
No comments:
Post a Comment