From owner-freebsd-apache@FreeBSD.ORG Sat Jan 31 19:41:53 2015 Return-Path: Delivered-To: freebsd-apache@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 87C8F96 for ; Sat, 31 Jan 2015 19:41:53 +0000 (UTC) Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) (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 59410250 for ; Sat, 31 Jan 2015 19:41:53 +0000 (UTC) Received: from compute2.internal (compute2.nyi.internal [10.202.2.42]) by mailout.nyi.internal (Postfix) with ESMTP id 048ED207BA for ; Sat, 31 Jan 2015 14:41:46 -0500 (EST) Received: from web3 ([10.202.2.213]) by compute2.internal (MEProxy); Sat, 31 Jan 2015 14:41:46 -0500 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=message-id:x-sasl-enc:from:to :mime-version:content-transfer-encoding:content-type:subject :date:in-reply-to:references; s=smtpout; bh=7XpWpZ/Z2tkyjirWivPs UafMek8=; b=XMm8x4fliLB/FrpWmjEXjFDWCKHhZemK9SqmgofyGVadyqWv2jx5 CL5PVnIfGpVGGP6bisjii2U8B2SCEYRy+ThPEUUHJqoj0ocDBAx/B4gt5PAKRQJB 1RwwtZAViryzqnA46jr3vFbvKhfr6l45a6dpwuwoLo8ESdfCnuZG3Ts= Received: by web3.nyi.internal (Postfix, from userid 99) id BF18211AA4F; Sat, 31 Jan 2015 14:41:45 -0500 (EST) Message-Id: <1422733305.2082711.221404909.496DCAE0@webmail.messagingengine.com> X-Sasl-Enc: yfDKRlr8dh7H4BwBLM8VZxA3TZw/xDXG0F+pxgZcQPN+ 1422733305 From: Mark Felder To: freebsd-apache@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Mailer: MessagingEngine.com Webmail Interface - ajax-46f3f2c7 Subject: Re: [Bug 196139] www/apache24: Update to 2.4.12 / unbreak build with libressl Date: Sat, 31 Jan 2015 13:41:45 -0600 In-Reply-To: References: X-BeenThere: freebsd-apache@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Support of apache-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 Jan 2015 19:41:53 -0000 On Sat, Jan 31, 2015, at 09:23, bugzilla-noreply@freebsd.org wrote: > > > > - change MPM backend from static to dynamic, > but keep mpm_prefork for compatiblity with e.g. php modules > - install dedicated MPM load file in case httpd was build with modular > MPM > (modules.d/000_mpm_prefork_fallback.conf) > - disable SSLv3 and SSLv2 fallback in sample httpd-ssl-conf > - use @sample macro instead EXAMPLESDIR > - add some SSLCipherSuite examples for OpenSSL >= 1.0.x > - add libressl support [1] > - add pkg-install script (to handle new modular MPM build) > - build now most all modules, so users using packages don't have > to run a custom build for missing modules > - fix suexec mode > These are good changes especially the MPM. I noticed that RHEL/CentOS lets you choose which MPM easily because they're all modules and that seems like a good direction to go. Thanks ohauer!