= RainLoop =

'''!RainLoop''' was a web mail client. It is a defunct project with several more active forks.

<<TableOfContents>>

----



== Configuration ==


=== Web Server ===

For details on configuring `nginx(8)` for FastCGI, see [[Nginx/FastCGI|here]].

{{{
server {
  listen 80;
  server_name mail.my-domain.tld;
  root /var/www/rainloop;

  location / {
    index index.html index.htm index.php;
    autoindex on;
    autoindex_exact_size off;
    autoindex_localtime on;
  }
  location ~ \.php$ {
    include fastcgi.conf;
    fastcgi_index index.php;
    fastcgi_pass unix:/run/php-fpm/php-fpm.sock;
  }
}
}}}

It is also important to block user access to the data directory.

{{{
location ^~ /data {
  deny all;
}
}}}



----
CategoryRicottone