diff options
author | Mukund Sivaraman <muks@banu.com> | 2010-02-18 00:30:19 +0530 |
---|---|---|
committer | Mukund Sivaraman <muks@banu.com> | 2010-02-18 00:30:19 +0530 |
commit | 719b5f6049dd802fbab969b758ad201823950645 (patch) | |
tree | df198cb724be238533fb116b4ac10f564e098ea8 /etc | |
parent | 907a6c2420ca059906827b11d92fae7a0b72e1da (diff) | |
download | tinyproxy-719b5f6049dd802fbab969b758ad201823950645.tar.gz tinyproxy-719b5f6049dd802fbab969b758ad201823950645.zip |
Fix pkgdatadir path in tinyproxy.conf
Diffstat (limited to '')
-rw-r--r-- | etc/tinyproxy.conf.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/etc/tinyproxy.conf.in b/etc/tinyproxy.conf.in index 08f10bf..2b64464 100644 --- a/etc/tinyproxy.conf.in +++ b/etc/tinyproxy.conf.in @@ -56,18 +56,18 @@ Timeout 600 # /usr/share/tinyproxy # /etc/tinyproxy # -#ErrorFile 404 "@datadir@/404.html" -#ErrorFile 400 "@datadir@/400.html" -#ErrorFile 503 "@datadir@/503.html" -#ErrorFile 403 "@datadir@/403.html" -#ErrorFile 408 "@datadir@/408.html" +#ErrorFile 404 "@pkgdatadir@/404.html" +#ErrorFile 400 "@pkgdatadir@/400.html" +#ErrorFile 503 "@pkgdatadir@/503.html" +#ErrorFile 403 "@pkgdatadir@/403.html" +#ErrorFile 408 "@pkgdatadir@/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 "@datadir@/default.html" +DefaultErrorFile "@pkgdatadir@/default.html" # # StatHost: This configures the host name or IP address that is treated @@ -84,7 +84,7 @@ DefaultErrorFile "@datadir@/default.html" # for the stathost. If this file doesn't exist a basic page is # hardcoded in tinyproxy. # -StatFile "@datadir@/stats.html" +StatFile "@pkgdatadir@/stats.html" # # Logfile: Allows you to specify the location where information should |