From owner-svn-ports-head@freebsd.org Wed Sep 14 22:28:41 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E666BDB018; Wed, 14 Sep 2016 22:28:41 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7156A1232; Wed, 14 Sep 2016 22:28:41 +0000 (UTC) (envelope-from osa@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8EMSePN046478; Wed, 14 Sep 2016 22:28:40 GMT (envelope-from osa@FreeBSD.org) Received: (from osa@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8EMSeQT046477; Wed, 14 Sep 2016 22:28:40 GMT (envelope-from osa@FreeBSD.org) Message-Id: <201609142228.u8EMSeQT046477@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: osa set sender to osa@FreeBSD.org using -f From: "Sergey A. Osokin" Date: Wed, 14 Sep 2016 22:28:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422167 - head X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2016 22:28:41 -0000 Author: osa Date: Wed Sep 14 22:28:40 2016 New Revision: 422167 URL: https://svnweb.freebsd.org/changeset/ports/422167 Log: www/nginx-devel: Change default log locations to avoid /var/log pollution The nginx error log default will always be touched regardless of the value of the error_log directive in nginx.conf. This is not a bug. It also breaks shell tab completion for the sane default of /var/log/nginx. This change aligns the compiled-in default and the configuration default of error log to a new default /var/log/nginx directory. PR: 212416 Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Sep 14 22:25:07 2016 (r422166) +++ head/UPDATING Wed Sep 14 22:28:40 2016 (r422167) @@ -6,6 +6,19 @@ You should get into the habit of checkin you update your ports collection, before attempting any port upgrades. 20160914: + AFFECTS: uses of www/nginx-devel + AUTHOR: osa@FreeBSD.org + + Nginx now creates logs under /var/log/nginx/ and changes default log + names from "nginx-access.log" and "nginx-error.log" to "access.log" and + "error.log" respectively. This is important for the error log because + the location is encoded and touched by nginx during startup regardless + of the configured location for the error log. + + See http://trac.nginx.org/nginx/ticket/147 for additional information + on why this happens. + +20160914: AFFECTS: users of deskutils/xfce4-volumed-pulse AUTHOR: olivierd@FreeBSD.org