summaryrefslogtreecommitdiff
path: root/www/tinyproxy/files
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2018-10-12 13:57:46 +0000
committeradam <adam@pkgsrc.org>2018-10-12 13:57:46 +0000
commit48d920c5ee8ffe5848db12da3f21fe94e09deada (patch)
tree50c1cce70b9cf6ba79802f6fbcab0c516d1ec784 /www/tinyproxy/files
parente86904104633e3055050f9c09a91d5cc168001e8 (diff)
downloadpkgsrc-48d920c5ee8ffe5848db12da3f21fe94e09deada.tar.gz
tinyproxy: updated to 1.10.0
Tinyproxy version 1.10.0 Major changes in this release ----------------------------- Add support for basic HTTP authentication Add socks upstream support Log to stdout if no logfile is specified Activate reverse proxy by default Support bind with transparent mode Install tinyproxy to bin/ instead of sbin/ Ship manpages as part of distribution tarball Allow multiple listen statements in the configuration Coverity fixes Simplified configure and build Improved selftest environment Included security fixes ----------------------- Fix CVE-2017-11747: Create PID file before dropping privileges. Fix CVE-2012-3505: algorithmic complexity DoS in hashmap Bugfixes -------- fix algorithmic complexity DoS in hashmap fix CONNECT requests with IPv6 literal addresses as host fix invalid free for GET requests to ipv6 literal address conf: Allow multiple Listen statements in the config allow listening on multiple families when no Listen is provided in config Drop supplementary groups build: fix build with autoconf >= 2.69 Move files installed in /etc/ to /etc/tinyproxy/ Fix crash (infinite loop) when writing to log file fails Fix bug in ACL netmask generation Fix FilterURLs with transparent proxy support Fix upstream proxy support Create log and pid files after we drop privs Don't recompile regular expressions Use output of id instead of $USER keep track of error codes in return codes in tests
Diffstat (limited to 'www/tinyproxy/files')
-rwxr-xr-xwww/tinyproxy/files/tinyproxy.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/www/tinyproxy/files/tinyproxy.sh b/www/tinyproxy/files/tinyproxy.sh
index d9b28aa846d..a4b8e96ed67 100755
--- a/www/tinyproxy/files/tinyproxy.sh
+++ b/www/tinyproxy/files/tinyproxy.sh
@@ -1,6 +1,6 @@
#!@RCD_SCRIPTS_SHELL@
#
-# $NetBSD: tinyproxy.sh,v 1.3 2017/02/18 05:59:23 nonaka Exp $
+# $NetBSD: tinyproxy.sh,v 1.4 2018/10/12 13:57:46 adam Exp $
#
# PROVIDE: tinyproxy
@@ -10,7 +10,7 @@
name="tinyproxy"
rcvar=$name
-command="@PREFIX@/sbin/${name}"
+command="@PREFIX@/bin/${name}"
pidfile="@VARBASE@/run/tinyproxy/${name}.pid"
required_files="@PKG_SYSCONFDIR@/${name}.conf"