From commits-return-22426-archive-asf-public=cust-asf.ponee.io@accumulo.apache.org Wed Dec 19 17:41:16 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 8C485180675 for ; Wed, 19 Dec 2018 17:41:16 +0100 (CET) Received: (qmail 9467 invoked by uid 500); 19 Dec 2018 16:41:15 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 9449 invoked by uid 99); 19 Dec 2018 16:41:15 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Dec 2018 16:41:15 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 13C7880589; Wed, 19 Dec 2018 16:41:15 +0000 (UTC) Date: Wed, 19 Dec 2018 16:41:15 +0000 To: "commits@accumulo.apache.org" Subject: [accumulo-website] branch master updated: Add rule to redirect http:// to https:// MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154523767498.19055.5692895792268332146@gitbox.apache.org> From: ctubbsii@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: accumulo-website X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: f5843471b2f853dd3e914377612f088dc05d8c56 X-Git-Newrev: e70de28d93a337f44ac2cec19f432c7da2858d30 X-Git-Rev: e70de28d93a337f44ac2cec19f432c7da2858d30 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. ctubbsii pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/accumulo-website.git The following commit(s) were added to refs/heads/master by this push: new e70de28 Add rule to redirect http:// to https:// e70de28 is described below commit e70de28d93a337f44ac2cec19f432c7da2858d30 Author: Christopher Tubbs AuthorDate: Wed Dec 19 11:39:21 2018 -0500 Add rule to redirect http:// to https:// Enforce use of secure https://accumulo.apache.org --- .htaccess | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..0f1face --- /dev/null +++ b/.htaccess @@ -0,0 +1,3 @@ +RewriteEngine On +RewriteCond %{HTTPS} !=on +RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R,L]