aboutsummaryrefslogtreecommitdiff
path: root/UPDATING
diff options
context:
space:
mode:
authorJohn Marino <marino@FreeBSD.org>2016-09-06 13:57:38 +0000
committerJohn Marino <marino@FreeBSD.org>2016-09-06 13:57:38 +0000
commitef1a4679e246593be4bf9885347829abf80a9763 (patch)
tree53e11cc8e8712f57d74d5166c56c4e4ed9ba0362 /UPDATING
parent724e374022535bd3451ea44b2a7f1bc1ec471c53 (diff)
downloadports-ef1a4679e246593be4bf9885347829abf80a9763.tar.gz
ports-ef1a4679e246593be4bf9885347829abf80a9763.zip
www/nginx: 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: 195916 Approved by: maintainer timeout (15 months)
Notes
Notes: svn path=/head/; revision=421429
Diffstat (limited to 'UPDATING')
-rw-r--r--UPDATING13
1 files changed, 13 insertions, 0 deletions
diff --git a/UPDATING b/UPDATING
index 0f85c96b33fe..01ded591cb67 100644
--- a/UPDATING
+++ b/UPDATING
@@ -5,6 +5,19 @@ they are unavoidable.
You should get into the habit of checking this file for changes each time
you update your ports collection, before attempting any port upgrades.
+20160906:
+ AFFECTS: uses of www/nginx
+ AUTHOR: marino@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.
+
20160905:
AFFECTS: users of databases/postgresql96-server
AUTHOR: girgen@FreeBSD.org