Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add vhost support for Rainloop webmail #45

Open
joglomedia opened this issue Oct 17, 2019 · 2 comments
Open

Add vhost support for Rainloop webmail #45

joglomedia opened this issue Oct 17, 2019 · 2 comments

Comments

@joglomedia
Copy link
Owner

Introduction

Rainloop is a popular free Open Source Web Application primarily written in PHP. It offers users a swift and contemporary web interface for accessing emails on a majority of commonly used domain mail providers such as Outlook, Yahoo, and Gmail, in addition to local mail servers.

Official download site

https://www.rainloop.net/downloads/

Current latest version

https://github.com/RainLoop/rainloop-webmail/releases
https://www.rainloop.net/repository/webmail/rainloop-community-latest.zip

Installation

https://www.rainloop.net/docs/installation/

curl -sL https://repository.rainloop.net/installer.php | php
or
wget -qO- https://repository.rainloop.net/installer.php | php

Sample Nginx directive

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ \.php$ {
        fastcgi_index index.php;
        fastcgi_split_path_info ^(.+\.php)(.*)$;
        fastcgi_keep_conn on;
        include /etc/nginx/fastcgi_params;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    }

    location ~ /\.ht {
        deny all;
    }

    location ^~ /data {
      deny all;
    }
@joglomedia joglomedia added enhancement hacktoberfest Participate on Hactoberfest 2019 by DigitalOcean & Dev labels Oct 17, 2019
@AutomationBoi
Copy link

hey do you want to run rainloop on a vhost is this what the issue title means?

@joglomedia
Copy link
Owner Author

joglomedia commented Oct 18, 2019

@AutomationBoi
Hi, for vhost configuration example is available here https://github.com/joglomedia/LEMPer/tree/master/etc/nginx/vhost

I want to integrate Rainloop to LEMPer stack

Unfortunately, there is no documentation available yet, for contribution please take a time to read the code base, first.

Thank you for your interest.

@joglomedia joglomedia removed the hacktoberfest Participate on Hactoberfest 2019 by DigitalOcean & Dev label Nov 23, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants