ويكان

تطبيق لوحة كانبان مفتوح المصدر مبني باستخدام Meteor، وهو مجاني ومرخص بموجب ترخيص MIT.

Access Wekan

  • افتح متصفحك وانتقل إلى: 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
  • Compose file: /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. افتح متصفحك وانتقل إلى: https://yourdomain.com

تفاصيل الطلب