27 lines
576 B
PHP
27 lines
576 B
PHP
<?php
|
|
/**
|
|
* @var Template_VariableAccessor $VAR
|
|
* @var array $OPT
|
|
*/
|
|
?>
|
|
# mailconfig
|
|
location ~* ^/autodiscover/autodiscover\.xml$ {
|
|
try_files $uri @mad;
|
|
}
|
|
location ~* ^(/\.well-known/autoconfig)?/mail/config\-v1\.1\.xml$ {
|
|
try_files $uri @mad;
|
|
}
|
|
|
|
location ~* ^/email\.mobileconfig$ {
|
|
try_files $uri @mad;
|
|
}
|
|
|
|
location @mad {
|
|
rewrite ^(.*)$ /mailconfig/ break;
|
|
|
|
proxy_pass <?= $VAR->panel->mailAutoConfigUrl ?>;
|
|
proxy_set_header X-Host $host;
|
|
proxy_set_header X-Request-URI $request_uri;
|
|
}
|
|
# mailconfig
|