Skip to content

Commit

Permalink
Merge pull request #132 from iredmail/develop
Browse files Browse the repository at this point in the history
Simplify Nginx directive with case-insensitive match.
  • Loading branch information
matidau authored Jan 25, 2025
2 parents f457cbc + 1d68c9f commit b88e9a4
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions config/nginx/z-push.conf
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,7 @@ server {
include snippets/z-push-php.conf;
}

location /AutoDiscover/AutoDiscover.xml {
include snippets/z-push-autodiscover.conf;
include snippets/z-push-php.conf;
}
location /Autodiscover/Autodiscover.xml {
include snippets/z-push-autodiscover.conf;
include snippets/z-push-php.conf;
}
location /autodiscover/autodiscover.xml {
location ~* ^/AutoDiscover/AutoDiscover.xml$ {
include snippets/z-push-autodiscover.conf;
include snippets/z-push-php.conf;
}
Expand Down

0 comments on commit b88e9a4

Please sign in to comment.