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.

19 lines
434 B

  1. # support roundcubemail secure urls
  2. rewrite "^/[a-zA-Z0-9]{16}/(.*)" /$1;
  3. # roundcube
  4. root /var/lib/roundcube;
  5. index index.php;
  6. location ~ \.php$ {
  7. include snippets/fastcgi-php.conf;
  8. fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
  9. }
  10. #deny access to .htaccess files, if Apache's document root
  11. #concurs with nginx's one
  12. location ~ /\.ht {
  13. deny all;
  14. }