summaryrefslogtreecommitdiff
path: root/etc/tinyproxy.conf.in (follow)
AgeCommit message (Collapse)AuthorFilesLines
2011-08-23Bug #103: Move files installed in /etc/ to /etc/tinyproxy/Mukund Sivaraman1-1/+1
2010-03-02Comment out the LogFile and PidFile options in the example tinyproxy.conf.Michael Adam1-2/+2
These are compiled in defaults now. Michael
2010-03-02change the default pid file location to ↵Michael Adam1-1/+1
"@LOCALSTATEDIR@/run/tinyproxy/tinyproxy.pid" I.e., add a tinyproxy subdirectory. This is meant to ease running tinyproxy as non-root user. The subdirectory can be used to give the tinyproxy user write permission. Michael
2010-03-02change the default log file location to ↵Michael Adam1-1/+1
"@LOCALSTATEDIR@/log/tinyproxy/tinyproxy.log" i.e. add a tinyproxy subdirectory. This is meant to ease running tinyproxy as non-root user the subdirectory can be used to give the tinyproxy user write permission. Michael
2010-02-23tinyproxy.conf: fix LogFile to proper CamelCase for consistencyMichael Adam1-2/+2
2010-02-18Fix pkgdatadir path in tinyproxy.confMukund Sivaraman1-7/+7
2010-01-08[BB#17] Add custom HTTP request headers to outgoing HTTP requestsMukund Sivaraman1-0/+7
2009-11-10tinyproxy.conf: add a comment documenting StatHostMichael Adam1-0/+10
Michael
2009-10-11Document DisableViaHeader in the tinyproxy.conf template.Michael Adam1-0/+9
2009-10-10Fix a typo in the tinyproxy.conf template.Michael Adam1-1/+1
2009-10-10generate etc/tinyproxy.conf from a tinyproxy.conf.in templateMichael Adam1-0/+304
This is a first cut at providing a tinyproxy.conf file with more useful default or example directories. It uses datadir, sysconfdir and localstatedir. Because automake is a little special here, this template can not simply be processed by configure (AC_CONFIG_FILES(...)), as these variables can only be used like this in makefiles. Instead, we need a little sed-processor in the Makfile in etc/. Michael