hi,
i migrating my server from an apache2 webserver to nginx.
all works fine cms/webmail, but now i try to migrate z-push.
every time i try to set an alias like this in apache (which works fine):
[code]
Alias /Microsoft-Server-ActiveSync /var/www/z-push/index.php
[/code]
in nginx:
[code]
location /Microsoft-Server-ActiveSync {
alias /var/www/z-push/index.php;
[color=#FF0000]OR[/color]
alias /var/www/z-push;
}
[/code]
nginx don't execute this file, he maks it only downloadable.
the permissions are all good.
i need only a way to rewrite the apache rule for nginx.
any ideas ?
thanks naked