Sfoglia il codice sorgente

Force https on mail autoconfig apache vhost.

John Giannelos 7 anni fa
parent
commit
351addffd7
Nessun account collegato all'indirizzo email del committer

+ 1
- 12
roles/mailserver/templates/etc_apache2_sites-available_autoconfig.j2 Vedi File

1
-# NOTE: We don't permanently redirect clients to the HTTPS address because some clients, like
2
-# Thunderbird, dont't follow redirections to the HTTPS URL.
3
-#
4
-# Additionally, documentation doesn't say whether the XML file should be served over either HTTP,
5
-# HTTPS or both, even though only the former is mentioned. Still, we allow clients to choose
6
-# between HTTP and HTTPS transports.
7
-
8
 <VirtualHost *:80>
1
 <VirtualHost *:80>
9
-
10
     ServerName {{ mail_server_autoconfig_hostname }}
2
     ServerName {{ mail_server_autoconfig_hostname }}
11
 
3
 
12
-    DocumentRoot            "/var/www/autoconfig"
13
-    Options                 -Indexes
14
-
15
-    HostnameLookups         Off
4
+    Redirect permanent / https://{{ mail_server_autoconfig_hostname }}/
16
 </VirtualHost>
5
 </VirtualHost>
17
 
6
 
18
 <VirtualHost *:443>
7
 <VirtualHost *:443>

Loading…
Annulla
Salva