Date: Fri, 14 Dec 2018 00:46:08 +0000 (UTC) From: "Sergey A. Osokin" <osa@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487400 - in head/www/rubygem-passenger: . files Message-ID: <201812140046.wBE0k8fk048194@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: osa Date: Fri Dec 14 00:46:08 2018 New Revision: 487400 URL: https://svnweb.freebsd.org/changeset/ports/487400 Log: Disable anonymous telemetry for nginx and apache by default. Bump PORTREVISION. Requested by: remko Added: head/www/rubygem-passenger/files/patch-disable-anonymous-telemetry-apache (contents, props changed) head/www/rubygem-passenger/files/patch-disable-anonymous-telemetry-nginx (contents, props changed) Modified: head/www/rubygem-passenger/Makefile Modified: head/www/rubygem-passenger/Makefile ============================================================================== --- head/www/rubygem-passenger/Makefile Fri Dec 14 00:41:58 2018 (r487399) +++ head/www/rubygem-passenger/Makefile Fri Dec 14 00:46:08 2018 (r487400) @@ -3,6 +3,7 @@ PORTNAME= passenger PORTVERSION= 6.0.0 +PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMEPREFIX= rubygem- Added: head/www/rubygem-passenger/files/patch-disable-anonymous-telemetry-apache ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-passenger/files/patch-disable-anonymous-telemetry-apache Fri Dec 14 00:46:08 2018 (r487400) @@ -0,0 +1,11 @@ +--- src/apache2_module/ServerConfig/AutoGeneratedStruct.h.orig 2018-12-03 12:35:46.016771000 -0500 ++++ src/apache2_module/ServerConfig/AutoGeneratedStruct.h 2018-12-03 12:36:58.273211000 -0500 +@@ -287,7 +287,7 @@ + + + AutoGeneratedServerConfig() { +- disableAnonymousTelemetry = false; ++ disableAnonymousTelemetry = true; + disableSecurityUpdateCheck = false; + showVersionInHeader = true; + turbocaching = true; Added: head/www/rubygem-passenger/files/patch-disable-anonymous-telemetry-nginx ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/rubygem-passenger/files/patch-disable-anonymous-telemetry-nginx Fri Dec 14 00:46:08 2018 (r487400) @@ -0,0 +1,11 @@ +--- src/ruby_supportlib/phusion_passenger/nginx/config_options.rb.orig 2018-12-03 12:23:06.980728000 -0500 ++++ src/ruby_supportlib/phusion_passenger/nginx/config_options.rb 2018-12-03 12:23:32.978924000 -0500 +@@ -204,7 +204,7 @@ + :name => 'passenger_disable_anonymous_telemetry', + :scope => :global, + :type => :flag, +- :default => false, ++ :default => true, + :context => [:main], + :struct => 'NGX_HTTP_MAIN_CONF_OFFSET' + },
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201812140046.wBE0k8fk048194>