1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00
vesta/install/ubuntu/16.04/nginx/webmail.inc

16 lines
357 B
PHP
Raw Permalink Normal View History

2016-11-22 16:55:09 +02:00
location /webmail {
alias /var/lib/roundcube;
2016-11-22 16:55:09 +02:00
location ~ /(config|temp|logs) {
return 404;
}
location ~ ^/webmail/(.*\.php)$ {
alias /var/lib/roundcube/$1;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
}