Drop the redirect to https for now on releases.pagure.org
This commit is contained in:
parent
5f6642373f
commit
52e6eeef32
1 changed files with 11 additions and 2 deletions
|
@ -31,11 +31,20 @@ WSGIDaemonProcess paguredocs user=git group=git maximum-requests=1000 display-na
|
||||||
<VirtualHost *:80>
|
<VirtualHost *:80>
|
||||||
{% if env == 'pagure-staging' %}
|
{% if env == 'pagure-staging' %}
|
||||||
ServerName releases.stg.pagure.org
|
ServerName releases.stg.pagure.org
|
||||||
Redirect permanent / https://releases.stg.pagure.org/
|
#Redirect permanent / https://releases.stg.pagure.org/
|
||||||
{% else %}
|
{% else %}
|
||||||
ServerName releases.pagure.org
|
ServerName releases.pagure.org
|
||||||
Redirect permanent / https://releases.pagure.org/
|
#Redirect permanent / https://releases.pagure.org/
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
# Added until we can get the cert out
|
||||||
|
DocumentRoot "/var/www/releases"
|
||||||
|
|
||||||
|
<Directory />
|
||||||
|
Options +Indexes
|
||||||
|
IndexOptions NameWidth=*
|
||||||
|
</Directory>
|
||||||
|
|
||||||
</VirtualHost>
|
</VirtualHost>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue