لوحة التركيز

بديل مفتوح المصدر ومستضاف ذاتيًا لبرامج Trello و Notion و Asana.

Accessing Focalboard

  • افتح متصفحك وقم بزيارة: http://<SERVER_IP>
  • Sign up and create your account on the first visit (this becomes the admin user).

الملفات والمجلدات المهمة

  • دليل التثبيت: /opt/focalboard
  • Compose file: /opt/focalboard/docker-compose.yml
  • Nginx config: /etc/nginx/sites-available/focalboard
  • حجم البيانات: /var/lib/docker/volumes/focalboard_fbdata/_data
  • PostgreSQL volume (if using PostgreSQL): /var/lib/docker/volumes/focalboard_pgdata/_data
  • App config (if using PostgreSQL): /opt/focalboard/config.json
  • Env file (if using PostgreSQL): /opt/focalboard/.env

Docker Management

Go to the install directory:

cd /opt/focalboard

Start containers:

docker compose up -d

عرض السجلات:

docker compose logs -f

Stop containers:

docker compose down

Restart container:

docker restart focalboard

Access container shell:

docker exec -it focalboard sh

تمكين SSL باستخدام نطاق

1. قم بتوجيه نطاقك إلى عنوان IP للخادم.

2. Edit Nginx config and replace server_name <IP>; مع نطاقك (<your-domain>):

vim /etc/nginx/sites-available/focalboard

3. تثبيت Certbot:

apt install -y certbot python3-certbot-nginx

4. قم بتشغيل الأمر التالي لإنشاء شهادة Let's Encrypt صالحة:

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

5. Restart Nginx to apply the changes:

systemctl restart nginx

6. Open your browser and visit: https://yourdomain.com

تفاصيل الطلب