WeKan

Meteorで構築されたオープンソースのカンバンボードアプリ。無料で、MITライセンスが適用されています。

Access Wekan

  • ブラウザを開いて、次のURLにアクセスしてください: http://<SERVER_IP> (HTTP)
  • Register your username, email address and password.
  • First registered user will be admin, and next ones normal users.
  • During registration, you may see an “Internal Server Error” because email is not configured, but the user is still created and you can log in normally.
  • If you want to disable self-registration, go to Admin Panel → Settings and check “Disable Self Registration”.

重要な経路

  • インストール先ディレクトリ: /root/wekan
  • ファイルを作成する: /root/wekan/docker-compose.yml
  • File uploads: /var/lib/docker/volumes/wekan_wekan-files/_data
  • データベース: /var/lib/docker/volumes/wekan_wekan-db/_data
  • NGINX設定: /etc/nginx/sites-available/wekan
  • NGINX enabled site: /etc/nginx/sites-enabled/wekan

Common Commands

Navigate to project:

cd /opt/wekan

ログを表示する:

docker compose logs -f

サービスを再起動します:

docker compose restart

Stop / Start:

docker compose down
docker compose up -d

コンテナを確認する:

docker ps

Enable Email (Optional)

編集:

/root/wekan/docker-compose.yml

Uncomment and configure:

MAIL_URL=smtp://<mail_url>:25/?ignoreTLS=true&tls={rejectUnauthorized:false}
MAIL_FROM=Wekan Notifications <[email protected]>

Then apply:

docker compose up -d

ドメインでのSSLの有効化

1. ドメインをサーバーのIPアドレスに設定してください。

2. 編集 docker-compose.yml ドメインを次のように設定するには ROOT_URL: ROOT_URL=https://your.domain.com

3. サービスを再構築する:

cd /root/wekan/
docker compose up -d

3. Edit Nginx config and replace server_name _; あなたのドメインで (server_name <your-domain>;):

vim /etc/nginx/sites-available/wekan

4. Install Certbot:

apt install -y certbot python3-certbot-nginx

5. Run the following command to generate a valid Let’s Encrypt certificate:

certbot --nginx --non-interactive --agree-tos --email [email protected] -d yourdomain.com

6. 変更を適用するために Nginx を再起動します:

systemctl restart nginx

7. ブラウザを開き、次のURLにアクセスしてください: https://yourdomain.com

申請内容