package ocsigenserver

  1. Overview
  2. Docs
A full-featured and extensible Web server

Install

dune-project
 Dependency

Authors

Maintainers

Sources

8.0.0.tar.gz
md5=be7a28e3a79cc028d35c88eca538ee8b
sha512=08cdaab31864aeba743ad0c03077a6eccf1089e7b7c4078045dab9409d409144b70cc546df7881b64b780689eee642ca2391be84ab2a6a8ffee0fbed2ad5ac98

doc/deflatemod/Deflatemod/index.html

Module DeflatemodSource

Deflatemod: compress output data

If you want to use this extension with Ocsigen Server's configuration file,

  1. have a look at the manual page.
  2. If you are using Ocsigen Server as a library, use the interface described
  3. here. Each of these functions behaves exactly as its configuration file counterpart.

This module belongs to ocamlfind package ocsigenserver.ext.deflatemod.

Example of use:

let _ =
   Ocsigen.Server.start
     [ Ocsigen.Server.host ~regexp:".*"
       [ Staticmod.run ~dir:"static" () 
       ; Deflatemod.run
           ~mode:(`Only [ `Type (Some "text", Some "html")
                        ; `Type (Some "text", Some "javascript")
                        ; `Type (Some "text", Some "css")
                        ; `Type (Some "application", Some "javascript")
                        ; `Type (Some "application", Some "x-javascript")
                        ; `Type (Some "application", Some "xhtml+xml")
                        ; `Type (Some "image", Some "svg+xml")
                        ; `Type (Some "application", Some "x-eliom")]) ()
        ]]
Sourceval set_compress_level : int -> unit
Sourceval set_buffer_size : int -> unit
Sourcetype filter = [
  1. | `Type of string option * string option
  2. | `Extension of string
]

Describes the content to deflate, either using its content type, or file extension

Sourceval run : mode:[ `All_but of filter list | `Only of filter list ] -> unit -> Ocsigen.Server.instruction

run ~mode () makes it possible to use this extension without configuration file.

Sourceval section : Logs.src