Focalboard

An open source, self-hosted alternative to Trello, Notion, and Asana.

Accessing Focalboard

  • Åbn din browser og gå til: http://<SERVER_IP>
  • Sign up and create your account on the first visit (this becomes the admin user).

Vigtige filer og mapper

  • Installationsmappe: /opt/focalboard
  • Skriv fil: /opt/focalboard/docker-compose.yml
  • Nginx-konfiguration: /etc/nginx/sites-available/focalboard
  • Datamængde: /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

Se logfiler:

docker compose logs -f

Stop containers:

docker compose down

Genstart containeren:

docker restart focalboard

Access container shell:

docker exec -it focalboard sh

Aktivering af SSL med et domæne

1. Peg dit domæne mod serverens IP-adresse.

2. Edit Nginx config and replace server_name <IP>; med dit domæne (<your-domain>):

vim /etc/nginx/sites-available/focalboard

3. Installer Certbot:

apt install -y certbot python3-certbot-nginx

4. Kør følgende kommando for at generere et gyldigt Let’s Encrypt-certifikat:

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

Ansøgningsoplysninger