Don't redirect when webmail is served on '/'

This commit is contained in:
Tim Möhlmann
2018-12-07 15:17:04 +02:00
parent eac4d553a9
commit 2de4995fec

View File

@@ -87,7 +87,7 @@ http {
include /overrides/*.conf; include /overrides/*.conf;
# Actual logic # Actual logic
{% if WEBROOT_REDIRECT %} {% if WEBROOT_REDIRECT and WEB_WEBMAIL != '/' %}
location / { location / {
return 301 {{ WEBROOT_REDIRECT }}; return 301 {{ WEBROOT_REDIRECT }};
} }