A few days ago we showed you how to install RainLoop on Ubuntu with Apache2 and PHP 7.2. This post shows you how to run RainLoop with Nginx and PHP 7.2-FPM instead.
RainLoop is simple web-based mail client that allows you to access all your external mail boxes from a single web interface. Written in PHP, it a great way to bring all your external mails like Google, Yahoo, and other SMTP inboxes onto your own server.
This brief tutorial shows students and new users how to install RainLoop webmail client on Ubuntu with Nginx and PHP 7.2 support.
With no database required, RainLoop comes with decent performance, simple installation and upgrade and support for IMAP and SMTP protocols (SSL, STARTTLS), sieve scripts support, integration with Facebook, Google, Twitter, and Dropbox and many more.
For more about RainLoop, please check out its homepage.Some highlights of RainLoop:
- Modern user interface.
- Complete support of IMAP and SMTP protocols including SSL and STARTTLS.
- Sieve scripts (Filters and vacation message).
- Minimalistic resources requirements.
- Direct access to mail server is used (mails are not stored locally on web server).
- Allows for adding multiple accounts to primary one, simultaneous access to different accounts in different browser tabs is supported. Additional identities.
When you’re ready to get RainLoop install on Ubuntu, follow the steps below:
Step 1: Install Nginx HTTP Server
Nginx HTTP Server is probably the most popular web server in use. so install it, since RainLoop needs it. To install Nginx HTTP on Ubuntu server, run the commands below.
sudo apt update sudo apt install nginx
After installing Nginx, the commands below can be used to stop, start and enable Nginx service to always start up with the server boots.
sudo systemctl stop nginx.service sudo systemctl start nginx.service sudo systemctl enable nginx.service
To test whether Nginx is installed, open your browser and browse to the server hostname or IP address. When you see that, then Nginx is working as expected.
Step 2: Install PHP 7.2-FPM and Related Modules
PHP 7.2-FPM may not be available in Ubuntu default repositories. in order to install it, you will have to get it from third-party repositories.
Run the commands below to add the below third party repository to upgrade to PHP 7.2-FPM
sudo apt-get install software-properties-common sudo add-apt-repository ppa:ondrej/php
Then update and upgrade to PHP 7.2-FPM
sudo apt update
Next, run the commands below to install PHP 7.2-FPM and related modules.
sudo apt install php7.2-fpm php7.2-common php7.2-curl php7.2-mbstring php7.2-xmlrpc php7.2-mysql php7.2-gd php7.2-xml php7.2-json php7.2-cli
After installing PHP 7.2, run the commands below to open PHP default config file for Nginx.
sudo nano /etc/php/7.2/fpm/php.ini
Then make the changes on the following lines below in the file and save. The value below is great settings to apply in your environments.
file_uploads = On allow_url_fopen = On short_open_tag = On memory_limit = 256M cgi.fix_pathinfo = 0 upload_max_filesize = 100M max_execution_time = 360 date.timezone = America/Chicago
After making the change above, save the file and close out.
Step 3: Restart Nginx
After installing PHP and related modules, all you have to do is restart Nginx to reload PHP configurations.
To restart Nginx, run the commands below
sudo systemctl restart nginx.service
To test PHP 7.2 settings with Nginx, create a phpinfo.php file in Nginx root directory by running the commands below
sudo nano /var/www/html/phpinfo.php
Then type the content below and save the file.
<?php phpinfo( ); ?>
Save the file. then browse to your server hostname followed by /phpinfo.php
You should see PHP default test page.
Step 3: Download and Configure RainLoop
Now that Nginx and PHP 7.2-FPM are installed, use the steps below to download and configure RainLoop environment on Ubuntu servers. First use the commands below to download the latest version.
cd /tmp wget
After that create RainLoop directory and extract the download content there.
sudo mkdir /var/www/html/rainloop sudo unzip rainloop-community-latest.zip -d /var/www/html/rainloop
Next, configure the directory access permission for Nginx.
sudo chown -R www-data:www-data /var/www/html/rainloop/ sudo find /var/www/html/rainloop/ -type d -exec chmod 755 {} ; sudo find /var/www/html/rainloop/ -type f -exec chmod 644 {} ;
When you’re done, run the commands below to create rainloop Nginx configuration file.
sudo nano /etc/nginx/sites-available/rainloop
Then copy and paste the content below into the file and save.
server {
listen 80;
listen [::]:80;
root /var/www/html/rainloop;
index index.php index.html index.htm;
server_name example.com www.example.com;
client_max_body_size 100M;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ^~ /data {
deny all;
}
}
Save the file and exit.
Next, run the commands below to enable RainLoop virtualhost and restart Nginx.
sudo ln -s /etc/nginx/sites-available/rainloop /etc/nginx/sites-enabled/ sudo systemctl restart nginx.service
Finally, open your web browser and browse the server name to access the back-end portal.
The default username and password: admin and password 12345
Login and begin configuring RainLoop
Congratulations! You have successfully installed and configure RainLoop on Ubuntu 16.04 | 18.04 with Nginx and PHP 7.2-FPM.
You may also like the post below: