[BACK]Return to man.cgi.8 CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/man.cgi.8 between version 1.5 and 1.7

version 1.5, 2014/07/13 09:39:32 version 1.7, 2014/07/18 19:03:39
Line 159  When using
Line 159  When using
 the  the
 .Xr slowcgi 8  .Xr slowcgi 8
 proxy daemon is needed to translate FastCGI requests to plain old CGI.  proxy daemon is needed to translate FastCGI requests to plain old CGI.
   .Pp
   To compile
   .Nm ,
   first copy
   .Pa cgi.h.example
   to
   .Pa cgi.h
   and edit it according to your needs.
   It contains the following compile-time definitions:
   .Bl -tag -width Ds
   .It Ev COMPAT_OLDURI
   Only useful for running on www.openbsd.org to deal with old URIs containing
   .Qq "manpath=OpenBSD "
   where the blank character has to be translated to a hyphen.
   When compiling for other sites, this definition can be deleted.
   .It Ev CSS_DIR
   An optional path to the directory containing the CSS files,
   to be specified relative to the server's document root,
   and to be specified without a trailing slash.
   When not specified, the CSS files
   are assumed to be in the document root.
   This is used in generated HTML code.
   .It Ev CUSTOMIZE_BEGIN
   A HTML string to be inserted right after opening the
   .Aq BODY
   element.
   .It Ev CUSTOMIZE_TITLE
   An ASCII string to be used for the HTML
   .Aq TITLE
   element.
   .It Ev MAN_DIR
   A path to the
   .Nm
   data directory to be used instead of
   .Pa /var/www/man ,
   relative to the web server
   .Xr chroot 2
   directory, to be specified without a trailing slash.
   This is prepended to the manpath when opening
   .Xr mandoc.db 5
   and manual page files.
   .El
   .Pp
   After editing
   .Pa cgi.h ,
   run
   .Pp
   .Dl make man.cgi
   .Pp
   and copy the files to the proper locations.
   Reading the
   .Cm installcgi
   target in the
   .Pa Makefile
   can help with that, but do not run it without carefully checking it
   because the directory layouts of web servers vary greatly.
 .Ss URI interface  .Ss URI interface
 .Nm  .Nm
 uniform resource identifiers are not needed for interactive use,  uniform resource identifiers are not needed for interactive use,
Line 210  is supported as an alias for
Line 266  is supported as an alias for
 The web server may pass the following CGI variables to  The web server may pass the following CGI variables to
 .Nm :  .Nm :
 .Bl -tag -width Ds  .Bl -tag -width Ds
 .It Ev HTTP_HOST  
 The FQDN of the (possibly virtual) host the HTTP server is running on.  
 This is used for  
 .Ic Location:  
 headers in HTTP 303 responses.  
 .It Ev PATH_INFO  .It Ev PATH_INFO
 The final part of the URI path passed from the client to the server,  The final part of the URI path passed from the client to the server,
 starting after the  starting after the
Line 282  An example
Line 333  An example
 source file located below the  source file located below the
 .Dq OpenBSD-current  .Dq OpenBSD-current
 manpath.  manpath.
 .El  
 .Sh COMPILE-TIME DEFINES  
 .Bl -tag -width Ds  
 .It Ev CSS_DIR  
 An optional path to the directory containing the CSS files,  
 to be specified relative to the server's document root,  
 and to be specified without a trailing slash.  
 When not specified, the CSS files  
 are assumed to be in the document root.  
 This is used in generated HTML code.  
 .It Ev MAN_DIR  
 A path to the  
 .Nm  
 data directory to be used instead of  
 .Pa /var/www/man ,  
 relative to the web server  
 .Xr chroot 2  
 directory, to be specified without a trailing slash.  
 This is prepended to the manpath when opening  
 .Xr mandoc.db 5  
 and manual page files.  
 .El  .El
 .Sh COMPATIBILITY  .Sh COMPATIBILITY
 The  The

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.7

CVSweb