Playbooks to a new Lilik
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

24 lines
501 B

server {
listen 80;
# support roundcubemail secure urls
rewrite "^/[a-zA-Z0-9]{16}/(.*)" /$1;
# roundcube
root /var/lib/roundcube;
index index.php;
location ~ \.php$ {
include snippets/fastcgi-php.conf;
# With php5-fpm:
fastcgi_pass unix:/var/run/php5-fpm.sock;
}
#deny access to .htaccess files, if Apache's document root
#concurs with nginx's one
location ~ /\.ht {
deny all;
}
}