svn commit: r380377 - in head/www/varnish4: . files
Mark Felder
feld at FreeBSD.org
Tue Mar 3 15:40:24 UTC 2015
Author: feld
Date: Tue Mar 3 15:40:23 2015
New Revision: 380377
URL: https://svnweb.freebsd.org/changeset/ports/380377
QAT: https://qat.redports.org/buildarchive/r380377/
Log:
Varnish 4.0.3 removed default hardcoded -sfile size and no longer
accepts percentages.
Set to 100M by default instead to match old behavior.
https://github.com/varnish/Varnish-Cache/commit/82ba5b928d5204df386a9a212dca9334d7a2bb41
Modified:
head/www/varnish4/Makefile
head/www/varnish4/files/varnishd.in
Modified: head/www/varnish4/Makefile
==============================================================================
--- head/www/varnish4/Makefile Tue Mar 3 15:00:42 2015 (r380376)
+++ head/www/varnish4/Makefile Tue Mar 3 15:40:23 2015 (r380377)
@@ -2,6 +2,7 @@
PORTNAME= varnish
PORTVERSION= 4.0.3
+PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://repo.varnish-cache.org/source/
PKGNAMESUFFIX= 4
Modified: head/www/varnish4/files/varnishd.in
==============================================================================
--- head/www/varnish4/files/varnishd.in Tue Mar 3 15:00:42 2015 (r380376)
+++ head/www/varnish4/files/varnishd.in Tue Mar 3 15:40:23 2015 (r380377)
@@ -35,7 +35,7 @@
# default: "classic,16383"
#
# varnishd_storage - storage method and parameters.
-# default: "file,/tmp,50%"
+# default: "file,/tmp,100M"
#
# varnishd_user - unprivileged user for the child process.
# default: "www"
@@ -64,7 +64,7 @@ load_rc_config ${name}
: ${varnishd_listen:=":80"}
: ${varnishd_admin:="localhost:81"}
: ${varnishd_backend:="localhost:8080"}
-: ${varnishd_storage:="file,/tmp,50%"}
+: ${varnishd_storage:="file,/tmp,100M"}
: ${varnishd_hash:="classic,16383"}
: ${varnishd_user:="www"}
: ${varnishd_group:="www"}
More information about the svn-ports-all
mailing list