1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-01-14 02:34:22 +02:00

nginx: Allow extending config with overrides

To facilitate this, the default redirect at / can be disabled, even if
the default remains at redirecting to the webmailer.

The extensions are within the host scope and are read from
$ROOT/overrides/nginx/*.conf.
This commit is contained in:
Patrick Georgi 2018-11-27 00:12:12 +01:00
parent 5c24390114
commit eac4d553a9
4 changed files with 10 additions and 3 deletions

View File

@ -14,6 +14,7 @@ COPY *.py /
EXPOSE 80/tcp 443/tcp 110/tcp 143/tcp 465/tcp 587/tcp 993/tcp 995/tcp 25/tcp 10025/tcp 10143/tcp
VOLUME ["/certs"]
VOLUME ["/overrides"]
CMD /start.py

View File

@ -84,14 +84,16 @@ http {
}
{% else %}
include /overrides/*.conf;
# Actual logic
{% if WEBMAIL != 'none' %}
{% if WEB_WEBMAIL != '/' %}
{% if WEBROOT_REDIRECT %}
location / {
return 301 {{ WEB_WEBMAIL }};
return 301 {{ WEBROOT_REDIRECT }};
}
{% endif %}
{% if WEBMAIL != 'none' %}
location {{ WEB_WEBMAIL }} {
{% if WEB_WEBMAIL != '/' %}
rewrite ^({{ WEB_WEBMAIL }})$ $1/ permanent;

View File

@ -97,6 +97,9 @@ COMPRESSION_LEVEL=
# Web settings
###################################
# Path to redirect / to
WEB_DEFAULT=/webmail
# Path to the admin interface if enabled
WEB_ADMIN=/admin

View File

@ -29,6 +29,7 @@ services:
- "$BIND_ADDRESS6:587:587"
volumes:
- "$ROOT/certs:/certs"
- "$ROOT/overrides/nginx:/overrides"
redis:
image: redis:alpine