Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Apache 1.3 with mod_gzip on Win32

Options
  • 02-05-2002 9:05pm
    #1
    Closed Accounts Posts: 157 ✭✭


    HI All,

    Mod_Gzip a neat module that compresses the text of a webpage with thecommon gzip algorithm.. and is uncompressed on the client side.. easier on the ol' 56k 'ers

    Does anyone here have any hints on where to find clear info
    on this module.. eg sample httpd.conf on win32?


    Ta..


    halfab


Comments

  • Banned (with Prison Access) Posts: 16,659 ✭✭✭✭dahamsta


    The official documentation seems to be pretty good:

    http://www.remotecommunications.com/apache/mod_gzip/

    The boys here ran gzip before the switched to BSD, but I'm not sure if they use the Apache or PHP extension. Wouldn't hurt to ask if you run into trouble though.

    adam


  • Closed Accounts Posts: 157 ✭✭halfab


    Thanks for that ..


    Does this look ok to the people that know.. it seems to be working ok . . .

    LoadModule gzip_module modules/ApacheModuleGzip.dll


    # [ mod_gzip configuration ]
    mod_gzip_on Yes
    mod_gzip_minimum_file_size 100
    mod_gzip_maximum_file_size 0
    mod_gzip_maximum_inmem_size 1000000
    mod_gzip_temp_dir c:\tmp
    mod_gzip_keep_workfiles No
    mod_gzip_dechunk Yes
    mod_gzip_item_include mime text/.*
    mod_gzip_item_include file \.htm$
    mod_gzip_item_include file \.html$
    mod_gzip_item_include file \.php$
    mod_gzip_item_include file \.pl$
    mod_gzip_item_include file \.cgi$
    mod_gzip_item_exclude reqheader Content-Type:multipart/form-data
    mod_gzip_item_exclude reqheader Content-Type:application/x-www-form-urlencoded


Advertisement