Include example information for the new "file" directives (ErrorFile,

DefaultErrorFile, StatFile.)  [Steven Young]
This commit is contained in:
Robert James Kaes 2003-03-13 21:38:00 +00:00
parent 78c1ed384a
commit fa1480a3e1

View File

@ -32,6 +32,30 @@ Port 8888
#
Timeout 600
#
# ErrorFile: Defines the HTML file to send when a given HTTP error
# occurs.
#
# ErrorFile 404 "/usr/share/tinyproxy/404.html"
# ErrorFile 400 "/usr/share/tinyproxy/400.html"
# ErrorFile 503 "/usr/share/tinyproxy/503.html"
# ErrorFile 403 "/usr/share/tinyproxy/403.html"
# ErrorFile 408 "/usr/share/tinyproxy/408.html"
#
# DefaultErrorFile: The HTML file that gets sent if there is no
# HTML file defined with an ErrorFile keyword for the HTTP error
# that has occured.
#
DefaultErrorFile "/usr/share/tinyproxy/default.html"
#
# StatFile: The HTML file that gets sent when a request is made
# for the stathost. If this file doesn't exist a basic page is
# hardcoded in tinyproxy.
#
StatFile "/usr/share/tinyproxy/stats.html"
#
# Where to log the information. Either LogFile or Syslog should be set,
# but not both.