WeKan

Open-source kanban board app built with Meteor, free and MIT-licensed.

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
  • Файл композиции: /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: /etc/nginx/sites-enabled/wekan

Распространенные команды

Перейти к проекту:

cd /opt/wekan

Просмотр журналов:

docker compose logs -f

Перезапустить службы:

docker compose restart

Остановка / Запуск:

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

Детали заявки