mirror of
https://github.com/Mailu/Mailu.git
synced 2025-04-25 12:15:02 +02:00
Merge pull request #669 from hoellen/fix-webmail-root
Fix nginx conf if webmail is on root path
This commit is contained in:
commit
80658c30da
@ -91,8 +91,10 @@ http {
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
location {{ WEB_WEBMAIL }} {
|
location {{ WEB_WEBMAIL }} {
|
||||||
|
{% if WEB_WEBMAIL != '/' %}
|
||||||
rewrite ^({{ WEB_WEBMAIL }})$ $1/ permanent;
|
rewrite ^({{ WEB_WEBMAIL }})$ $1/ permanent;
|
||||||
rewrite ^{{ WEB_WEBMAIL }}/(.*) /$1 break;
|
rewrite ^{{ WEB_WEBMAIL }}/(.*) /$1 break;
|
||||||
|
{% endif %}
|
||||||
include /etc/nginx/proxy.conf;
|
include /etc/nginx/proxy.conf;
|
||||||
client_max_body_size {{ MESSAGE_SIZE_LIMIT|int + 8388608 }};
|
client_max_body_size {{ MESSAGE_SIZE_LIMIT|int + 8388608 }};
|
||||||
proxy_pass http://$webmail;
|
proxy_pass http://$webmail;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user