RainLoop の使い方
RainLoopというWebMail の使い方です。
私は、localhost の Nginx で使っています。
ソースの取得
https://www.rainloop.net/repository/webmail/rainloop-community-latest.zip
zip を /var/www/html/rainloop で解凍します。
unzip rainloop-community-latest.zip
次のようなツリー構造が出来ます。
$ tree -L 3
.
├── data
│ ├── EMPTY
│ └── VERSION
├── index.php
└── rainloop
└── v
└── 1.14.0
パーミッションの変更
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
sudo chown -R www-data:www-data .
ブラウザーで http://localhost/rainloop/ にアクセスするとログイン画面が表示されます。まだ、ログインはできません。
ブラウザーで http://localhost/rainloop/?admin/ にアクセスします。
Login: admin
Password: 12345
でログインします。
data に外部からアクセスできないようにする Nginx の設定
http (80) と https(443) を使っている時は両方に設定する必要があります。
location ~ /rainloop/data {
deny all;
}
Author And Source
この問題について(RainLoop の使い方), 我々は、より多くの情報をここで見つけました https://qiita.com/ekzemplaro/items/8cbbb9bbb227a7dbf4f4著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .