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/revproxy/Revproxy/index.html

Module RevproxySource

Revproxy: Forward a request to another Web server

If you want to use this extension with Ocsigen Server's configuration file, have a look at the manual page. If you are using Ocsigen Server as a library, use the interface described here. Each of these functions behaves exactly as its configuration file counterpart.

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

Example of use. Forward all requests to a given directory to the same directory of another server running locally on another port. We are using it in combination with Outputfilter to rewrite redirections.

let _ =
   Ocsigen.Server.start
     [ Ocsigen.Server.host ~regexp:".*"
       [ Revproxy.run
           ~redirection:(Revproxy.create_redirection 
                           ~full_url:false
                           ~regexp:"(othersite/.* )"
                           ~keephost:true
                           "https://localhost:8123/\\1") 
           ()
        ; Outputfilter.run 
            ~mode:(`Rewrite (Ocsigen_http.Header.Name.location,
                             "http://localhost:8123/(.* )",
                             "http://my.publicaddress.org/\\1"))
            ()
 ]]
Sourceval section : Logs.src
Sourcetype redirection
Sourceval create_redirection : ?full_url:bool -> ?pipeline:bool -> ?keephost:bool -> regexp:string -> string -> redirection
Sourceval run : redirection:redirection -> unit -> Ocsigen.Server.instruction

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