Differences between revisions 6 and 8 (spanning 2 versions)
Revision 6 as of 2022-09-24 06:06:59
Size: 817
Comment:
Revision 8 as of 2022-09-26 18:47:33
Size: 840
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from RainLoop
Line 16: Line 17:
[[NGINX]] can be configured to serve !RainLoop via [[NGINX/FastCGIConfiguration|FastCGI]]. For details on configuring `nginx(8)` for FastCGI, see [[NGINX/FastCGI|here]].

RainLoop

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


Configuration

Web Server

For details on configuring nginx(8) for FastCGI, see 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

PHP/RainLoop (last edited 2023-04-22 20:29:15 by DominicRicottone)