~ubuntu-branches/ubuntu/natty/ocamlnet/natty

« back to all changes in this revision

Viewing changes to debian/etc/netcgi_apache.conf

  • Committer: Bazaar Package Importer
  • Author(s): Stefano Zacchiroli, Stefano Zacchiroli, Stephane Glondu
  • Date: 2008-03-03 09:00:15 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20080303090015-2wih28c75fzy1lhm
Tags: 2.2.9-2
[ Stefano Zacchiroli ]
* fix vcs-svn field to point just above the debian/ dir
* close an old TODO item in debian/TODO
* bump urgency for the OCaml 3.10.1 transition
* debian/rules: fix the kfreebsd fix (avoid failing bogusly when we are not
  on a BSD arch)

[ Stephane Glondu ]
* Add patch configure_kfreebsd.dpatch to make configure script recognize
  GNU/kFreeBSD as FreeBSD and fix compatibility with kFreeBSD port
  (rpc-auth-local not available). (Closes: #462291)
* Add patch fix_ssl_bindings.dpatch to fix faulty ssl bindings,
  (Closes: #450903).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# To load extra libraries ("y/x.cma" is relative to the OCaml standard library
 
3
# directory, see netcgi_apache.load for examples of this):
 
4
#
 
5
# NetcgiLoad y/x.cma
 
6
 
 
7
# To telll apache that scripts available at some location have to be handled by
 
8
# netcgi_apache module:
 
9
#
 
10
# <Location /caml-bin>
 
11
#   SetHandler ocaml-bytecode
 
12
#   NetcgiHandler Netcgi_apache.bytecode
 
13
#   Options ExecCGI
 
14
#   Allow from all
 
15
# </Location>
 
16
#
 
17
# Or to do the same specifying that some extensions have to be handled by
 
18
# netcgi_apache:
 
19
 
20
# NetcgiHandler Netcgi_apache.bytecode
 
21
# AddHandler ocaml-bytecode .cma
 
22
 
 
23
# See `ocamlc -where`/netcgi_apache/netcgi_apache.mli for more information.
 
24