Date: Tue, 3 Mar 2015 15:40:23 +0000 (UTC) From: Mark Felder <feld@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380377 - in head/www/varnish4: . files Message-ID: <201503031540.t23FeNZt041535@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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"}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503031540.t23FeNZt041535>