roundcube: add missing slash to https redirection

This commit is contained in:
Victor LABORIE 2018-06-25 16:57:18 +02:00
parent 2e2745290e
commit b18b3d3404
2 changed files with 2 additions and 1 deletions

View file

@ -35,6 +35,7 @@ The **patch** part changes incrementally at each release.
* mysql-oracle: fix configuration directory variable * mysql-oracle: fix configuration directory variable
* php: fpm slowlog needs an absolute path * php: fpm slowlog needs an absolute path
* evoacme: fix module detection in apache config * evoacme: fix module detection in apache config
* roundcube: add missing slash to https redirection
### Security ### Security

View file

@ -1,6 +1,6 @@
<VirtualHost *:80> <VirtualHost *:80>
ServerName {{ roundcube_host }} ServerName {{ roundcube_host }}
Redirect permanent / https://{{ roundcube_host }} Redirect permanent / https://{{ roundcube_host }}/
</VirtualHost> </VirtualHost>
<VirtualHost *:443> <VirtualHost *:443>