Drop the redirect to https for now on releases.pagure.org

This commit is contained in:
Pierre-Yves Chibon 2016-12-15 15:00:49 +00:00
parent 5f6642373f
commit 52e6eeef32

View file

@ -31,11 +31,20 @@ WSGIDaemonProcess paguredocs user=git group=git maximum-requests=1000 display-na
<VirtualHost *:80>
{% if env == 'pagure-staging' %}
ServerName releases.stg.pagure.org
Redirect permanent / https://releases.stg.pagure.org/
#Redirect permanent / https://releases.stg.pagure.org/
{% else %}
ServerName releases.pagure.org
Redirect permanent / https://releases.pagure.org/
#Redirect permanent / https://releases.pagure.org/
{% endif %}
# Added until we can get the cert out
DocumentRoot "/var/www/releases"
<Directory />
Options +Indexes
IndexOptions NameWidth=*
</Directory>
</VirtualHost>