From 4e3c0cd018ca20730026340dc6677bc913474cae Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 25 Apr 2017 00:21:50 +0000 Subject: [PATCH] drop redirect to https on keys for now --- roles/keyserver/templates/sks.conf | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/roles/keyserver/templates/sks.conf b/roles/keyserver/templates/sks.conf index b11d8e50b1..2a5b3af297 100644 --- a/roles/keyserver/templates/sks.conf +++ b/roles/keyserver/templates/sks.conf @@ -40,10 +40,16 @@ NameVirtualHost *:443 ServerAdmin sysadmin-keys-members@fedoraproject.org ServerName keys.fedoraproject.org - RewriteEngine On - RewriteCond %{HTTPS} off - RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [NE] - Header always add Strict-Transport-Security "max-age=15768000; includeSubDomains; preload" + +# RewriteEngine On +# RewriteCond %{HTTPS} off +# RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [NE] +# Header always add Strict-Transport-Security "max-age=15768000; includeSubDomains; preload" + + ProxyPass / http://localhost:11371/ + ProxyPassReverse / http://localhost:11371/ + SetEnv proxy-nokeepalive 1 + ProxyVia Full